Skip to content

Commit

Permalink
⬆️ Upgrade Node to 18.19 (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
pritansh authored Feb 6, 2024
1 parent c508bb8 commit 155459b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
build:
docker:
# Specify the version you desire here
- image: cimg/node:16.15
- image: cimg/node:18.19

working_directory: ~/repo

Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ jobs:
- uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ubuntu-latest-node-16.x-yarn-${{ hashFiles('**/yarn.lock') }}
key: ubuntu-latest-node-18.19.x-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
ubuntu-latest-node-16.x-yarn-
ubuntu-latest-node-18.19.x-yarn-
- uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.19
registry-url: https://registry.npmjs.org/
- name: Install
run: yarn install --frozen-lockfile
Expand All @@ -47,12 +47,12 @@ jobs:
- uses: actions/cache@v3
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ubuntu-latest-node-16.x-yarn-${{ hashFiles('**/yarn.lock') }}
key: ubuntu-latest-node-18.19.x-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
ubuntu-latest-node-16.x-yarn-
ubuntu-latest-node-18.19.x-yarn-
- uses: actions/setup-node@v3
with:
node-version: 16.x
node-version: 18.19
registry-url: https://registry.npmjs.org/
- name: Install
run: yarn install --frozen-lockfile
Expand Down

0 comments on commit 155459b

Please sign in to comment.