Skip to content

Commit 9150aab

Browse files
committed
fix: use npm ci instead of npm install for CI builds
- Replace npm install with npm ci in the build step - Provides faster, more reliable builds using package-lock.json - Ensures exact dependency versions are used consistently - Follows CI/CD best practices for reproducible builds
1 parent 8d1be74 commit 9150aab

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

{{cookiecutter.protocol_name}}/.github/workflows/deploy-gh-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
- name: Build reproschema-ui
5757
run: |
5858
cd reproschema-ui
59-
npm install
59+
npm ci
6060
npm run build
6161
6262
- name: Copy protocol to reproschema-ui

0 commit comments

Comments
 (0)