Skip to content

Commit 35e8bb5

Browse files
add flag --legacy-peer-deps in ci/cd
1 parent 65f20b8 commit 35e8bb5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/firebase-hosting-merge.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- uses: actions/checkout@v4
14-
- run: cd docs && npm ci && npm run build
14+
- run: cd docs && npm ci --legacy-peer-deps && npm run build
1515
- name: Test unit component
1616
run: npm ci --legacy-peer-deps && npm run test:unit
1717
- name: Test unit docs

.github/workflows/firebase-hosting-pull-request.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
runs-on: ubuntu-latest
1010
steps:
1111
- uses: actions/checkout@v4
12-
- run: cd docs && npm ci && npm run build
12+
- run: cd docs && npm ci --legacy-peer-deps && npm run build
1313
- name: Test unit component
1414
run: npm ci --legacy-peer-deps && npm run test:unit
1515
- name: Test unit docs

0 commit comments

Comments
 (0)