animated-cube/.github/workflows/test.yaml
Zakary Timson 5012b386ed
All checks were successful
Workflow Test / Step One (push) Successful in 2s
Update .github/workflows/test.yaml
2023-08-06 23:47:39 +00:00

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