Skip to content

Small improvments

Small improvments #31

Workflow file for this run

name: Linting & formatting
on:
push:
branches: ['master', 'actions']
workflow_dispatch:
jobs:
lint:

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

View workflow run for this annotation

GitHub Actions / Linting & formatting

Invalid workflow file

The workflow is not valid. .github/workflows/format.yml (Line: 9, Col: 3): The workflow must contain at least one job with no dependencies.
runs-on: ubuntu-latest
needs: formatting
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
with:
version: 8
- uses: actions/setup-node@v3
with:
node-version: 18.x
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint it
run: pnpm run lint:no-fmt