animated-cube/.github/workflows/test.yaml
Workflow config file is invalid. Please check your config file: yaml: line 9: mapping values are not allowed in this context

25 lines
481 B
YAML

name: Workflow Test
on: push
jobs:
first:
name: Step One
runs-on: ubuntu-latest
container: node:latest
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: node:latest
image: node:latest
volumes:
- ${{github.workspace}}:/root
steps:
- run: ls