Skip to content

Run of the complex workflow #1

Run of the complex workflow

Run of the complex workflow #1

name: Simple Workflow
run-name: Run of the complex workflow
on:
# Workflow run trigger events
push:
branches: ["main"]
pull_request:
branches: ["main"]
# Manually trigger workflow run
workflow_dispatch:
jobs:
# First job
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# By default, the runner will use Bash on Linux/MacOS runners
# Bash is supported on all runner types
- name: Run a one-line script
run: echo Hello, world!
- name: Run a multi-line script
run: |
echo Add other actions to build,
echo test, and deploy your project
test:
# The type of runner that the job will run on
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/[email protected]
- name: display
run: echo node -e "console.log('running from node!')"