Skip to content
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
19 changes: 10 additions & 9 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ package_steps: &package_steps
jobs:
main:
docker:
- image: circleci/node:16
- image: cimg/node:16.14
environment:
NPM_CONFIG_ENGINE_STRICT: 'true'
NPM_CONFIG_STRICT_PEER_DEPS: 'true'
Expand All @@ -152,13 +152,13 @@ jobs:

main@node-17:
docker:
- image: circleci/node:17
- image: cimg/node:17.7

<<: *main_steps

integration:
docker:
- image: circleci/node:16
- image: cimg/node:16.14
environment:
NPM_CONFIG_ENGINE_STRICT: 'true'
NPM_CONFIG_STRICT_PEER_DEPS: 'true'
Expand All @@ -168,14 +168,14 @@ jobs:

integration@node-17:
docker:
- image: circleci/node:17
- image: cimg/node:17.7
- image: redis

<<: *integration_steps

danger:
docker:
- image: circleci/node:16
- image: cimg/node:16.14
steps:
- checkout

Expand All @@ -195,7 +195,7 @@ jobs:

frontend:
docker:
- image: circleci/node:16
- image: cimg/node:16.14
environment:
NPM_CONFIG_ENGINE_STRICT: 'true'
NPM_CONFIG_STRICT_PEER_DEPS: 'true'
Expand Down Expand Up @@ -235,13 +235,14 @@ jobs:
command: npm run build

package:
machine: true
machine:
image: 'ubuntu-2004:202111-02'

<<: *package_steps

services:
docker:
- image: circleci/node:16
- image: cimg/node:16.14
environment:
NPM_CONFIG_ENGINE_STRICT: 'true'
NPM_CONFIG_STRICT_PEER_DEPS: 'true'
Expand All @@ -250,7 +251,7 @@ jobs:

services@node-17:
docker:
- image: circleci/node:17
- image: cimg/node:17.7

<<: *services_steps

Expand Down