Skip to content

Commit

Permalink
Merge pull request #404 from lifeomic/node20
Browse files Browse the repository at this point in the history
fix: supports node v20
  • Loading branch information
Shawn Zhu authored Oct 2, 2023
2 parents 37a4167 + 10a151a commit 2058722
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/pr-branch-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,19 @@ jobs:
- group: 1
node-version: 16.x
run: |
yarn test --ci --reporters="github-actions"
yarn test --ci --reporters="github-actions" --color
yarn build
- group: 2
node-version: 18.x
run: |
yarn test --ci --reporters="github-actions"
yarn test --ci --reporters="github-actions" --color
yarn build
- group: 3
node-version: 20.x
run: |
yarn test --ci --reporters="github-actions" --color
yarn build
- group: 4
node-version: 18.x
run: |
yarn run docs:build
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"test": "TZ=UTC jest"
},
"engines": {
"node": "16.x || 18.x"
"node": "16.x || 18.x || 20.x"
},
"husky": {
"hooks": {
Expand Down

0 comments on commit 2058722

Please sign in to comment.