Skip to content

Prettier (bruh it's just a new line) #10

Prettier (bruh it's just a new line)

Prettier (bruh it's just a new line) #10

Workflow file for this run

name: Linting
on:
push:
branches: "master"
pull_request:
jobs:
setup:
steps:

Check failure on line 10 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: 10, Col: 5): Required property is missing: runs-on
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: npm
- run: npm ci
eslint:
needs: setup
runs-on: ubuntu-latest
steps:
- run: npm run eslint
stylelint:
needs: setup
runs-on: ubuntu-latest
steps:
- run: npm run stylelint