Skip to content

Commit

Permalink
Force peer dependency override
Browse files Browse the repository at this point in the history
  • Loading branch information
francisli committed Nov 29, 2024
1 parent d76d63c commit b3025ba
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
node-version: 22
cache: "npm"
- name: Install dependencies & generate css types
run: npm ci
run: npm ci --force
- name: Check types
run: npm run type:check

Expand All @@ -29,7 +29,7 @@ jobs:
node-version: 22
cache: "npm"
- name: Install dependencies
run: npm i --ci
run: npm ci --force
- name: Run format:check
run: |
npm run format:version
Expand All @@ -49,7 +49,7 @@ jobs:
node-version: 22
cache: "npm"
- name: Install dependencies
run: npm i --ci
run: npm ci --force
- name: Pre-pull Postgres image
run: docker pull postgres:15
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ COPY --chown=node:node package*.json ./
# We install Husky via a "prepare" lifecycle script - disable it in prod
# See: https://typicode.github.io/husky/guide.html#disable-husky-in-ci-docker-prod
RUN npm pkg delete scripts.prepare && npm pkg delete scripts.postinstall
RUN npm ci
RUN npm ci --force

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

0 comments on commit b3025ba

Please sign in to comment.