Zakary Timson
5012b386ed
All checks were successful
Workflow Test / Step One (push) Successful in 2s
25 lines
486 B
YAML
25 lines
486 B
YAML
name: Workflow Test
|
|
on: push
|
|
|
|
jobs:
|
|
first:
|
|
name: Step One
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: node:latest
|
|
volumes:
|
|
- ${{github.workspace}}:${{github.workspace}}
|
|
steps:
|
|
- run: pwd
|
|
- uses: actions/checkout@v3
|
|
- run: ls
|
|
second:
|
|
name: Step One
|
|
needs: first
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: node:latest
|
|
volumes:
|
|
- ${{github.workspace}}:${{github.workspace}}
|
|
steps:
|
|
- run: ls |