Skip to content

Commit

Permalink
fix: bump to node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
BelfordZ committed Apr 11, 2024
1 parent acad91f commit 1fa64b5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ aliases:

defaults: &defaults
working_directory: ~/project
docker:
- image: cimg/node:20.12.1

jobs:
test:
<<: *defaults
docker:
- image: circleci/node:lts
steps:
- checkout
- restore_cache: *restore-deps-cache
Expand All @@ -46,7 +46,7 @@ jobs:
- run:
name: "Update Node.js and npm"
command: |
curl -sSL "https://nodejs.org/dist/v16.17.0/node-v16.17.0-linux-x64.tar.xz" | sudo tar --strip-components=2 -xJ -C /usr/local/bin/ node-v16.17.0-linux-x64/bin/node
curl -sSL "https://nodejs.org/dist/v20.12.1/node-v20.12.1-linux-x64.tar.xz" | sudo tar --strip-components=2 -xJ -C /usr/local/bin/ node-v20.12.1-linux-x64/bin/node
curl https://www.npmjs.com/install.sh | sudo bash
- run: npm install
- run: ./node_modules/.bin/semantic-release
Expand Down
2 changes: 1 addition & 1 deletion .node-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
16.17.0
20.12.1

0 comments on commit 1fa64b5

Please sign in to comment.