Skip to content

Commit

Permalink
ci: bump node version to 18 (#1893)
Browse files Browse the repository at this point in the history
* ci: bump node version to 18

* fix: upgrade to node 18

* test: add back 14 to pass required action
  • Loading branch information
pr-Mais authored Dec 25, 2023
1 parent 2a782c5 commit cbd1626
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/readmes-updated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
cache: "npm"
cache-dependency-path: "**/functions/package-lock.json"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["14", "16"]
node: ["14", "16", "18"]
name: node.js_${{ matrix.node }}_test
steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 14
node-version: 18
- name: NPM install
run: SKIP_POSTINSTALL=yes npm i
- name: Prettier Lint Check
Expand Down

0 comments on commit cbd1626

Please sign in to comment.