Skip to content

Commit c2f2ac1

Browse files
committed
task: change npm i to npm ci in pipelines.
1 parent 9cdc305 commit c2f2ac1

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

.github/workflows/cypress_admin-ui.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ jobs:
9090
node-version: 20.x
9191

9292
- name: Install dependencies
93-
run: npm install
93+
run: npm ci
9494

9595
- name: Build FidesJS
9696
working-directory: clients/fides-js

.github/workflows/cypress_e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
- name: Install dependencies
5151
run: |
5252
cd clients/cypress-e2e
53-
npm install
53+
npm ci
5454
5555
- name: Cypress E2E tests
5656
uses: cypress-io/github-action@v6

.github/workflows/cypress_privacy-center.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
node-version: 20.x
3131

3232
- name: Install dependencies
33-
run: npm install
33+
run: npm ci
3434

3535
- name: Build FidesJS
3636
working-directory: clients/fides-js

.github/workflows/frontend_checks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
node-version: ${{ matrix.node-version }}
3737

3838
- name: Install dependencies
39-
run: npm install
39+
run: npm ci
4040

4141
- name: Lint
4242
run: npm run lint

.github/workflows/publish_package.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install node modules
2929
run: |
3030
cd clients
31-
npm install
31+
npm ci
3232
3333
- name: Build and export frontend files
3434
run: |

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ COPY clients/fides-js/package.json ./fides-js/package.json
114114
COPY clients/admin-ui/package.json ./admin-ui/package.json
115115
COPY clients/privacy-center/package.json ./privacy-center/package.json
116116

117-
RUN npm install
117+
RUN npm ci
118118

119119
COPY clients/ .
120120

0 commit comments

Comments
 (0)