Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update node versions in ci #65

Merged
merged 4 commits into from
Aug 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 13 additions & 12 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,28 @@ common_steps: &common_steps
when: always

jobs:
node-8:
node-14:
docker:
- image: circleci/node:8
- image: cimg/node:14.21.1


<<: *common_steps

node-10:
node-16:
docker:
- image: circleci/node:10
- image: cimg/node:16.19.0

<<: *common_steps

node-11:
node-18:
docker:
- image: circleci/node:11
- image: cimg/node:18.12.1

<<: *common_steps

node-12:
node-19:
docker:
- image: circleci/node:12
- image: cimg/node:19.3.0

<<: *common_steps

Expand All @@ -47,7 +48,7 @@ workflows:

on-commit:
jobs:
- node-8
- node-10
- node-11
- node-12
- node-14
- node-16
- node-18
- node-19