animated-cube/.github/workflows/test.yaml

24 lines
458 B
YAML
Raw Normal View History

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:41:22 -04:00
container: node:latest
image: node:latest
volumes:
- ${{github.workspace}}:/root
2023-08-06 19:21:10 -04:00
steps:
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
needs: first
runs-on: ubuntu-latest
container: node:latest
image: node:latest
volumes:
- ${{github.workspace}}:/root
steps:
- run: ls