Skip to content

Commit d01fcc3

Browse files
committed
Remove npm install --force
1 parent 86da7b3 commit d01fcc3

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/pr.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
node-version: 22
1414
cache: "npm"
1515
- name: Install dependencies & generate css types
16-
run: npm ci --force
16+
run: npm ci
1717
- name: Check types
1818
run: npm run type:check
1919

@@ -29,7 +29,7 @@ jobs:
2929
node-version: 22
3030
cache: "npm"
3131
- name: Install dependencies
32-
run: npm ci --force
32+
run: npm ci
3333
- name: Run format:check
3434
run: |
3535
npm run format:version
@@ -49,7 +49,7 @@ jobs:
4949
node-version: 22
5050
cache: "npm"
5151
- name: Install dependencies
52-
run: npm ci --force
52+
run: npm ci
5353
- name: Pre-pull Postgres image
5454
run: docker pull postgres:15
5555
- name: Run tests

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ COPY --chown=node:node package*.json ./
3131
# We install Husky via a "prepare" lifecycle script - disable it in prod
3232
# See: https://typicode.github.io/husky/guide.html#disable-husky-in-ci-docker-prod
3333
RUN npm pkg delete scripts.prepare && npm pkg delete scripts.postinstall
34-
RUN npm ci --force
34+
RUN npm ci
3535

3636
# Copy the project files into the app directory
3737
COPY --chown=node:node . $APP_HOME

0 commit comments

Comments
 (0)