Skip to content

chore(ci): make lint auto-run and keep Vercel deploy manual #1

chore(ci): make lint auto-run and keep Vercel deploy manual

chore(ci): make lint auto-run and keep Vercel deploy manual #1

name: Lint errors check
on:
push:
branches:
- main
- master
workflow_dispatch:
jobs:
checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
- name: Setup Node
uses: actions/setup-node@v5
with:
node-version: "22"
cache: npm
cache-dependency-path: package-lock.json
- name: Install deps
run: npm ci
- name: Lint
run: npm run lint