Skip to content

Commit

Permalink
feat: Run CI on node 18 (#41)
Browse files Browse the repository at this point in the history
* feat: Run CI on node 18

* fix: Use cimg/node instead of circleci/node image
  • Loading branch information
danLDev authored Jul 19, 2023
1 parent 9f0ef97 commit 3c08650
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,21 +17,21 @@ workflows:
jobs:
- unit-tests:
<<: *not_master
name: node-16
version: '16'
name: node-18
version: '18.0.0'

master:
jobs:
- unit-tests:
<<: *only_master
name: node-16
version: '16'
name: node-18
version: '18.0.0'
- publish:
<<: *only_master
version: '16'
version: '18.0.0'
context: common-env-vars
requires:
- node-16
- node-18

nightly:
triggers:
Expand All @@ -42,16 +42,16 @@ workflows:
- nightly:
<<: *only_master
context: common-env-vars
name: nightly-16
version: '16'
name: nightly-18
version: '18.0.0'

jobs:
unit-tests:
parameters:
version:
type: string
docker:
- image: circleci/node:<< parameters.version >>
- image: cimg/node:<< parameters.version >>
steps:
- checkout
- install:
Expand All @@ -64,7 +64,7 @@ jobs:
version:
type: string
docker:
- image: circleci/node:<< parameters.version >>
- image: cimg/node:<< parameters.version >>
steps:
- checkout
- install_without_lockfile
Expand All @@ -80,7 +80,7 @@ jobs:
version:
type: string
docker:
- image: circleci/node:<< parameters.version >>
- image: cimg/node:<< parameters.version >>
steps:
- checkout
- install:
Expand Down

0 comments on commit 3c08650

Please sign in to comment.