add more in js #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: FakeMain | |
# simulate QA step of a PR : in fact awaiting 10 seconds and success | |
# WHEN the action will run. | |
on: | |
# Trigger ON PUSH or PULL REQUEST events for the main branch | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: simulate_QA_await_10sec | |
run: | | |
echo "(simulate) QA in progress ..." | |
sleep 10 | |
echo "... OK" |