Skip to content

Commit

Permalink
rm node14 and add node20 for testing in github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon McAllister committed Oct 21, 2023
1 parent 5f03ef7 commit ce1eb37
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
strategy:
matrix:
# https://what-version-of-node.js.org/
node-version: [14.x, 16.x, 18.x] # remember to update this when support is added/dropped
node-version: [16.x, 18.x, 20.x] # remember to update this when support is added/dropped
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 16 # remember to update this when support is added/dropped
node-version: 18 # remember to update this when support is added/dropped
- run: npm ci
- run: npm run lint
- run: npm run test
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ jobs:
strategy:
matrix:
# https://what-version-of-node.js.org/
node-version: [14.x, 16.x, 18.x] # remember to update this when support is added/dropped
node-version: [16.x, 18.x, 20.x] # remember to update this when support is added/dropped
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 16 # remember to update this when support is added/dropped
node-version: 18 # remember to update this when support is added/dropped
- run: npm ci
- run: npm run lint
- run: npm run test
Expand Down

0 comments on commit ce1eb37

Please sign in to comment.