Skip to content

Commit 6835541

Browse files
committed
Using the old webpack version
1 parent e1797a8 commit 6835541

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/setup-node@v3
1515

1616
- name: Compile
17-
run: yarn && yarn build
17+
run: yarn && yarn add --dev @types/[email protected] && yarn build
1818

1919
unit-test:
2020
runs-on: ubuntu-latest
@@ -29,6 +29,9 @@ jobs:
2929
- name: Install dependencies
3030
run: yarn install
3131

32+
- name: Fix TypeScript compatibility
33+
run: yarn add --dev @types/[email protected]
34+
3235
- name: Unit Test
3336
run: yarn jest tests/unit
3437

@@ -63,6 +66,9 @@ jobs:
6366
- name: Install dependencies
6467
run: yarn install
6568

69+
- name: Fix TypeScript compatibility
70+
run: yarn add --dev @types/[email protected]
71+
6672
- name: Integration Server Test
6773
env:
6874
VOYAGE_API_KEY: ${{ secrets.VOYAGE_API_KEY }}
@@ -83,6 +89,9 @@ jobs:
8389
- name: Install dependencies
8490
run: yarn install
8591

92+
- name: Fix TypeScript compatibility
93+
run: yarn add --dev @types/[email protected]
94+
8695
- name: Build
8796
run: yarn build
8897

0 commit comments

Comments
 (0)