Skip to content

Commit

Permalink
ci: update ci scripts to use latest node version
Browse files Browse the repository at this point in the history
  • Loading branch information
spiltcoffee committed Jul 9, 2023
1 parent e782b42 commit ecde9a3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/continuous-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:

- uses: actions/[email protected]
with:
node-version: 16
node-version: latest
cache: yarn

- run: yarn install --immutable
Expand Down

0 comments on commit ecde9a3

Please sign in to comment.