-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: update ci scripts to use latest node version
- Loading branch information
1 parent
e782b42
commit ecde9a3
Showing
3 changed files
with
7 additions
and
7 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 |
---|---|---|
|
@@ -31,10 +31,10 @@ jobs: | |
- uses: actions/checkout@v3 | ||
|
||
# unlike with ci, we only want the latest version to deploy with | ||
- name: setup node.js 16 | ||
- name: setup node.js | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 16 | ||
node-version: latest | ||
cache: yarn | ||
|
||
- run: yarn install --immutable | ||
|
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 |
---|---|---|
|
@@ -16,11 +16,11 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
# only need 16 here as none of the steps below test the actual output | ||
- name: setup node.js 16 | ||
# only need latest here as none of the steps below test the actual output | ||
- name: setup node.js | ||
uses: actions/[email protected] | ||
with: | ||
node-version: 16 | ||
node-version: latest | ||
cache: yarn | ||
|
||
- run: yarn install --immutable | ||
|
@@ -39,7 +39,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
node-version: [14, 16] | ||
node-version: [16, 18, 20] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
|
||
|
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 |
---|---|---|
|
@@ -28,7 +28,7 @@ jobs: | |
|
||
- uses: actions/[email protected] | ||
with: | ||
node-version: 16 | ||
node-version: latest | ||
cache: yarn | ||
|
||
- run: yarn install --immutable | ||
|