Skip to content

Just make stylelint job re-install everything #12

Just make stylelint job re-install everything

Just make stylelint job re-install everything #12

Workflow file for this run

name: Linting
on:
push:
branches: "master"
pull_request:
jobs:
eslint:

Check failure on line 9 in .github/workflows/linting.yml

View workflow run for this annotation

GitHub Actions / Linting

Invalid workflow file

The workflow is not valid. .github/workflows/linting.yml (Line: 9, Col: 3): The workflow must contain at least one job with no dependencies.
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run eslint
stylelint:
needs: setup
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run stylelint