-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Shawn Zhu
committed
Nov 14, 2023
1 parent
20c701b
commit f2457c7
Showing
3 changed files
with
6 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,12 +9,15 @@ jobs: | |
name: Node.JS ${{ matrix.node-version }} Axios ${{ matrix.axios-version }} | ||
strategy: | ||
matrix: | ||
node-version: [16.x, 18.x] | ||
node-version: [14.x, 16.x, 18.x] | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
cache: 'yarn' | ||
- run: yarn install --ignore-engines # @typescript-eslint/[email protected] requires node 16+ | ||
if: ${{ matrix.node-version == '14.x' }} | ||
- run: yarn install | ||
if: ${{ matrix.node-version != '14.x' }} | ||
- run: yarn test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,7 @@ | |
"author": "LifeOmic <[email protected]>", | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=16" | ||
"node": ">=14" | ||
}, | ||
"files": [ | ||
"src/**/*.d.ts", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters