Skip to content

Commit cce2d4c

Browse files
committed
--legacy-peer-deps
1 parent 373f0dc commit cce2d4c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
- uses: actions/setup-node@v4
3030
with:
3131
node-version: ${{ matrix.node-version }}
32-
- run: npm install
32+
- run: npm install --legacy-peer-deps
3333
- run: npx c8 ava
3434
- uses: codecov/codecov-action@v5
3535
with:
@@ -42,14 +42,14 @@ jobs:
4242
steps:
4343
- uses: actions/checkout@v4
4444
- uses: actions/setup-node@v4
45-
- run: npm install
45+
- run: npm install --legacy-peer-deps
4646
- run: npm run lint
4747
run-rules-on-codebase:
4848
runs-on: ubuntu-latest
4949
steps:
5050
- uses: actions/checkout@v4
5151
- uses: actions/setup-node@v4
52-
- run: npm install
52+
- run: npm install --legacy-peer-deps
5353
- run: npm run run-rules-on-codebase
5454
integration:
5555
name: Integration test (${{ matrix.group }})
@@ -72,5 +72,5 @@ jobs:
7272
steps:
7373
- uses: actions/checkout@v4
7474
- uses: actions/setup-node@v4
75-
- run: npm install
75+
- run: npm install --legacy-peer-deps
7676
- run: npm run integration -- --group ${{ matrix.group }}

.github/workflows/smoke-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
steps:
1212
- uses: actions/checkout@v4
1313
- uses: actions/setup-node@v4
14-
- run: npm install
14+
- run: npm install --legacy-peer-deps
1515
- uses: AriPerkkio/eslint-remote-tester-run-action@v5
1616
with:
1717
issue-title: "Results of weekly scheduled smoke test"

.github/workflows/update-snapshots.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
with:
1616
# Locked due to the difference of `zlib.gzipSync()` between Node.js versions
1717
node-version: 24
18-
- run: npm install
18+
- run: npm install --legacy-peer-deps
1919
- run: npm run lint
2020
- run: rm -rf test/snapshots
2121
# Force update snapshots, https://github.com/avajs/ava/discussions/2754

0 commit comments

Comments
 (0)