Update .github/workflows/test.yaml
This commit is contained in:
parent
51372c0470
commit
b6c1e94ff8
15
.github/workflows/test.yaml
vendored
15
.github/workflows/test.yaml
vendored
@ -5,9 +5,20 @@ jobs:
|
|||||||
first:
|
first:
|
||||||
name: Step One
|
name: Step One
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
container: ubuntu:latest
|
container: node:latest
|
||||||
|
image: node:latest
|
||||||
|
volumes:
|
||||||
|
- ${{github.workspace}}:/root
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- run: ls
|
- run: ls
|
||||||
- run: touch test.txt
|
second:
|
||||||
|
name: Step One
|
||||||
|
needs: first
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
container: node:latest
|
||||||
|
image: node:latest
|
||||||
|
volumes:
|
||||||
|
- ${{github.workspace}}:/root
|
||||||
|
steps:
|
||||||
- run: ls
|
- run: ls
|
Loading…
Reference in New Issue
Block a user