ci: add fallback install for dev deps to satisfy lint/coverage without changing lockfile
Some checks failed
CI / build-and-test (pull_request) Failing after 36s

This commit is contained in:
Nicholai 2025-09-19 05:00:12 -06:00
parent 5910f2c83c
commit 082f1cba53

View File

@ -33,6 +33,11 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Ensure CI dev deps present (fallback)
run: |
# Workaround when package-lock is stale vs package.json
npm i --no-save eslint@^8.57.0 eslint-config-next@14.2.16 @vitest/coverage-v8@^3.2.4 || true
- name: Lint
run: npm run ci:lint