Skip to content

Commit

Permalink
test with node 16, 18, and 20 (#2498)
Browse files Browse the repository at this point in the history
* test with node 14, 16, 18, and 20

* do not test with node 14
  • Loading branch information
evantahler committed May 19, 2023
1 parent 0e645dd commit 21b006c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
image: node
steps:
- uses: actions/checkout@v3
- name: Use Node.js 14.x
- name: Use Node.js 20.x
uses: actions/setup-node@v3.6.0
with:
node-version: 14.x
node-version: 20.x
- run: npm ci
- run: ./bin/deploy-docs
- name: Push changes
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ jobs:
image: node
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
- name: Use Node.js 20.x
uses: actions/setup-node@v3.6.0
with:
node-version: 18.x
node-version: 20.x
- run: npm ci
- run: npm run lint

Expand All @@ -33,10 +33,10 @@ jobs:
image: node
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
- name: Use Node.js 20.x
uses: actions/setup-node@v3.6.0
with:
node-version: 18.x
node-version: 20.x
- run: npm ci
- run: npm run docs

Expand All @@ -53,7 +53,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [14.x, 16.x, 18.x]
node-version: [16.x, 18.x, 20.x]

steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit 21b006c

Please sign in to comment.