Fix CI workflow: use npm install instead of npm ci (no lock file)
Some checks failed
CI / test (push) Failing after 5s

This commit is contained in:
2026-02-01 01:49:21 +00:00
parent b2aec11d1b
commit 28ba988e65

View File

@@ -18,13 +18,13 @@ jobs:
cache: 'npm' cache: 'npm'
- name: Install dependencies - name: Install dependencies
run: npm ci run: npm install
- name: Build - name: Build
run: npm run build run: npm run build
- name: Run tests - name: Run tests
run: npm test --if-present run: npm test
- name: Run lint - name: Run lint
run: npm run lint --if-present run: npm run lint