Skip to content

chore: move PR checks to lint-only workflow and remove obsolete build workflows #3

chore: move PR checks to lint-only workflow and remove obsolete build workflows

chore: move PR checks to lint-only workflow and remove obsolete build workflows #3

Workflow file for this run

name: PR Lint
on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: npm
- name: Install dependencies
run: npm ci
- name: Run lint
run: npm run lint