Skip to content

Fix job IDs

Fix job IDs #8

Workflow file for this run

name: Lint and test

Check failure on line 1 in .github/workflows/check.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/check.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: defaults
on:
push:
branches:
- "main"
pull_request:
jobs:
defaults:
runs-on: ubuntu-latest
install-dependencies:
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: yarn
- run: yarn install
run-linter:
needs: install-dependencies
steps:
- uses: actions/checkout@v4
- run: yarn lint
run-prettier:
needs: install-dependencies
steps:
- uses: actions/checkout@v4
- run: yarn prettier --check
run-tests:
needs: install-dependencies
steps:
- uses: actions/checkout@v4
- run: yarn test