Update .github/workflows/test.yaml

This commit is contained in:
Zakary Timson 2023-08-06 23:41:22 +00:00
parent 51372c0470
commit b6c1e94ff8

View File

@ -5,9 +5,20 @@ jobs:
first:
name: Step One
runs-on: ubuntu-latest
container: ubuntu:latest
container: node:latest
image: node:latest
volumes:
- ${{github.workspace}}:/root
steps:
- uses: actions/checkout@v3
- run: ls
- run: touch test.txt
- run: ls
second:
name: Step One
needs: first
runs-on: ubuntu-latest
container: node:latest
image: node:latest
volumes:
- ${{github.workspace}}:/root
steps:
- run: ls