Skip to content

workflow fix

workflow fix #283

Workflow file for this run

name: Build, Lint, and Test
on:
push:
branches: [ main ]
pull_request:
jobs:
build-lint-test:
name: Build, Lint, and Test
runs-on: ubuntu-20.04
steps:
- uses: actions/[email protected]
with:

Check failure on line 14 in .github/workflows/workflow.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/workflow.yaml

Invalid workflow file

You have an error in your yaml syntax on line 14
persist-credentials: false
- run: yarn --frozen-lockfile
- run: yarn lint
- run: yarn build
- run: yarn test
all-jobs-pass:
name: All jobs pass
runs-on: ubuntu-20.04
needs:
- build-lint-test
steps:
- run: echo "success"