animated-cube/.github/workflows/test.yaml
Zakary Timson 43b1d6e9bd
Some checks failed
Workflow Test / Step One (push) Failing after 1m26s
Update .github/workflows/test.yaml
2023-08-06 23:43:50 +00:00

25 lines
457 B
YAML

name: Workflow Test
on: push
jobs:
first:
name: Step One
runs-on: ubuntu-latest
container:
image: node:latest
volumes:
- ${{github.workspace}}:/app
steps:
- run: cd /app
- uses: actions/checkout@v3
- run: ls
second:
name: Step One
needs: first
runs-on: ubuntu-latest
container:
image: node:latest
volumes:
- ${{github.workspace}}:/root
steps:
- run: ls