Skip to content

Commit

Permalink
fix: use node 18 (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
tripodsan committed Jan 12, 2023
1 parent bdb0237 commit ccb6b31
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: 2.1
executors:
node16:
node18:
docker:
- image: cimg/node:16.16
- image: cimg/node:18.2

orbs:
codecov: codecov/codecov@3.2.4
Expand All @@ -20,7 +20,7 @@ commands:

jobs:
build:
executor: node16
executor: node18
steps:
- setup
- run: mkdir junit
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/semantic-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ jobs:
if: "!contains(github.event.head_commit.message, '[skip ci]')"
steps:
- uses: actions/checkout@v3
- name: Use Node.js 14.x
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: '14.x'
node-version: '18.x'
- run: npm install
- run: npm test
- run: npm run semantic-release
Expand Down

0 comments on commit ccb6b31

Please sign in to comment.