2023-08-06 19:20:12 -04:00
|
|
|
name: Workflow Test
|
|
|
|
on: push
|
|
|
|
|
|
|
|
jobs:
|
2023-08-06 19:21:10 -04:00
|
|
|
first:
|
|
|
|
name: Step One
|
|
|
|
runs-on: ubuntu-latest
|
2023-08-06 19:43:50 -04:00
|
|
|
container:
|
2023-08-06 19:41:22 -04:00
|
|
|
image: node:latest
|
|
|
|
volumes:
|
2023-08-06 19:47:39 -04:00
|
|
|
- ${{github.workspace}}:${{github.workspace}}
|
2023-08-06 19:21:10 -04:00
|
|
|
steps:
|
2023-08-06 19:47:39 -04:00
|
|
|
- run: pwd
|
2023-08-06 19:28:09 -04:00
|
|
|
- uses: actions/checkout@v3
|
2023-08-06 19:21:28 -04:00
|
|
|
- run: ls
|
2023-08-06 19:41:22 -04:00
|
|
|
second:
|
|
|
|
name: Step One
|
2023-08-06 19:42:37 -04:00
|
|
|
needs: first
|
2023-08-06 19:41:22 -04:00
|
|
|
runs-on: ubuntu-latest
|
2023-08-06 19:43:50 -04:00
|
|
|
container:
|
2023-08-06 19:41:22 -04:00
|
|
|
image: node:latest
|
|
|
|
volumes:
|
2023-08-06 19:47:39 -04:00
|
|
|
- ${{github.workspace}}:${{github.workspace}}
|
2023-08-06 19:41:22 -04:00
|
|
|
steps:
|
|
|
|
- run: ls
|