Skip to content
This repository was archived by the owner on Jul 8, 2025. It is now read-only.
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
10 changes: 5 additions & 5 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@ version: 2.1
executors:
node-executor:
docker:
- image: circleci/node:14.4.0
- image: circleci/node:14.18.2
working_directory: ~/app

jobs:
check_branch_name:
docker:
- image: circleci/node:14.4.0
- image: circleci/node:14.18.2
working_directory: ~/app
steps:
- run:
Expand All @@ -25,7 +25,7 @@ jobs:
build:
working_directory: ~/app
docker:
- image: circleci/node:14.4.0
- image: circleci/node:14.18.2
steps:
- checkout
- restore_cache:
Expand Down Expand Up @@ -61,7 +61,7 @@ jobs:
- coverage
lint:
docker:
- image: circleci/node:14.4.0
- image: circleci/node:14.18.2
steps:
- checkout
- restore_cache:
Expand All @@ -78,7 +78,7 @@ jobs:
command: npm run lint
compile:
docker:
- image: circleci/node:14.4.0
- image: circleci/node:14.18.2
steps:
- checkout
- restore_cache:
Expand Down