fix: change npm ci to npm install (lockfile not in repo)
CI was failing with 'npm ci requires package-lock.json' error. Use npm install instead since package-lock.json is not committed. npm install will create the lockfile for future builds.
This commit is contained in:
@@ -22,7 +22,7 @@ jobs:
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install dependencies
|
||||
run: npm ci
|
||||
run: npm install
|
||||
|
||||
- name: Run tests
|
||||
run: npm test -- --run 2>&1 || echo "Tests completed"
|
||||
|
||||
Reference in New Issue
Block a user