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

chore(deps): pin node.js #3814

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
20 changes: 10 additions & 10 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ orbs:
jobs:
install-build:
docker:
- image: cimg/node:22.7
- image: cimg/node:22.7.0
resource_class: medium+
working_directory: /mnt/ramdisk
steps:
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:

lint:
docker:
- image: cimg/node:22.7
- image: cimg/node:22.7.0
working_directory: /mnt/ramdisk
steps:
- checkout
Expand All @@ -77,7 +77,7 @@ jobs:

format:
docker:
- image: cimg/node:22.7
- image: cimg/node:22.7.0
working_directory: /mnt/ramdisk
steps:
- checkout
Expand All @@ -87,7 +87,7 @@ jobs:

unit-tests:
docker:
- image: cimg/node:22.7
- image: cimg/node:22.7.0
environment:
NODE_ENV: development
TMPDIR: /mnt/ramdisk
Expand All @@ -102,7 +102,7 @@ jobs:

integration-tests:
docker:
- image: cimg/node:22.7
- image: cimg/node:22.7.0
environment:
TMPDIR: /mnt/ramdisk
resource_class: medium+
Expand All @@ -117,7 +117,7 @@ jobs:

html-exporter-tests:
docker:
- image: cimg/node:22.7-browsers
- image: cimg/node:22.7.0-browsers
environment:
TMPDIR: /mnt/ramdisk
resource_class: medium+
Expand All @@ -133,7 +133,7 @@ jobs:

e2e-tests:
docker:
- image: cimg/node:22.7
- image: cimg/node:22.7.0
environment:
TMPDIR: /mnt/ramdisk
steps:
Expand All @@ -144,7 +144,7 @@ jobs:

db-tests:
docker:
- image: cimg/node:22.7
- image: cimg/node:22.7.0
- image: circleci/mongo:latest
environment:
MONGO_INITDB_ROOT_USERNAME: root
Expand All @@ -165,14 +165,14 @@ jobs:

push_coveralls:
docker:
- image: 'cimg/node:22.7'
- image: 'cimg/node:22.7.0'
steps:
- coveralls/upload:
parallel_finished: true

release:
docker:
- image: 'cimg/node:22.7'
- image: 'cimg/node:22.7.0'
working_directory: /mnt/ramdisk
steps:
- checkout
Expand Down