Skip to content

chore: migrate release workflows to npm Trusted Publishers with unified workflow #101

chore: migrate release workflows to npm Trusted Publishers with unified workflow

chore: migrate release workflows to npm Trusted Publishers with unified workflow #101

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "20"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint