Skip to content

Commit 464033b

Browse files
committed
Fix PR build issue
1 parent 8464491 commit 464033b

File tree

12 files changed

+22809
-25804
lines changed

12 files changed

+22809
-25804
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111

1212
strategy:
1313
matrix:
14-
node: [12, 14, 16]
14+
node: [20, 22]
1515
os: [ubuntu-latest, macOS-latest, windows-latest]
1616

1717
steps:
@@ -21,9 +21,7 @@ jobs:
2121
with:
2222
node-version: ${{ matrix.node }}
2323
registry-url: https://registry.npmjs.org
24-
- name: bootstrap
25-
run: npx lerna bootstrap --hoist
26-
- name: link
27-
run: npx lerna link
24+
- name: install
25+
run: npm install
2826
- name: test
2927
run: npm test

jest.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,8 @@ module.exports = {
142142
// An array of regexp pattern strings that are matched against all test paths, matched tests are skipped
143143
testPathIgnorePatterns: ['/node_modules/', '<rootDir>/packages/optimizer-docker'],
144144

145+
testTimeout: 60 * 1000, // 60 seconds
146+
145147
// The regexp pattern or array of patterns that Jest uses to detect test files
146148
// testRegex: [],
147149

0 commit comments

Comments
 (0)