fix: use npm install instead of npm ci (no package-lock.json)
Some checks failed
CI / test (push) Failing after 1m31s
CI / build (push) Has been skipped

This commit is contained in:
2026-01-31 12:52:06 +00:00
parent e4667a29c2
commit 2ec1d7129e

View File

@@ -16,10 +16,9 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
run: npm install
- name: Run linting
run: npm run lint
@@ -37,10 +36,9 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
run: npm install
- name: Build project
run: npm run build