Skip to content

Commit 9b04e97

Browse files
fix(workflows): update dependency installation method in code quality workflow
- Changed the dependency installation command from `npm ci` to `npm install` in the code quality workflow for better compatibility with the project setup. - This adjustment ensures that the workflow installs the latest dependencies as specified in `package.json`, improving the reliability of the build process.
1 parent 49898bd commit 9b04e97

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/code-quality.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Checkout code
1616
uses: actions/checkout@v4
1717
- name: Install dependencies
18-
run: cd workers/main && npm ci
18+
run: cd workers/main && npm install
1919
- name: Run ESLint
2020
run: cd workers/main && npm run eslint
2121

@@ -28,7 +28,7 @@ jobs:
2828
with:
2929
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
3030
- name: Install dependencies
31-
run: cd workers/main && npm ci
31+
run: cd workers/main && npm install
3232
- name: Run tests with coverage
3333
run: cd workers/main && npm run coverage
3434
- name: Run SonarQube scan

0 commit comments

Comments
 (0)