Skip to content

Commit

Permalink
fix(ci): npm ci upstream errors
Browse files Browse the repository at this point in the history
  • Loading branch information
yld-weng committed Sep 5, 2022
1 parent e3da958 commit e865edd
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
uses: microsoft/playwright-github-action@v1

- name: Install dependencies
run: npm ci
run: npm ci --legacy-peer-deps

# Enable incremental build
- name: Incremental build
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
uses: microsoft/playwright-github-action@v1

- name: Install dependencies
run: npm ci
run: npm ci --legacy-peer-deps

- uses: actions/download-artifact@v3
with:
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
uses: microsoft/playwright-github-action@v1

- name: Install dependencies
run: npm ci
run: npm ci --legacy-peer-deps

- name: Jest cache
id: gatsby-jest-cache
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-qa.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
restore-keys: ${{ runner.os }}-gatsby-qa-

- name: Install dependencies
run: npm ci
run: npm ci --legacy-peer-deps

- name: Set user info
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
restore-keys: ${{ runner.os }}-gatsby-deploy-

- name: Install dependencies
run: npm ci
run: npm ci --legacy-peer-deps

- name: Set user info
run: |
Expand Down

0 comments on commit e865edd

Please sign in to comment.