Skip to content

feat: lint on gh actions #1

feat: lint on gh actions

feat: lint on gh actions #1

Workflow file for this run

name: Linter
permissions: read-all
on:
push:
branches: main
pull_request:
branches: main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.4
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint