Skip to content

Commit

Permalink
build: upgrading to node 14.20.0
Browse files Browse the repository at this point in the history
  • Loading branch information
willmendesneto committed Feb 13, 2023
1 parent 24e7348 commit 08c395d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: 2
version: 2.1

docker_defaults: &docker_defaults
docker:
- image: circleci/node:14.18.1-browsers
- image: cimg/node:14.20.0-browsers
working_directory: ~/project/repo

attach_workspace: &attach_workspace
Expand Down Expand Up @@ -61,29 +61,29 @@ jobs:
- run:
name: Running unit tests and Collecting Code Coverage
command: |
sudo npm run test:ci
npm run test:ci
bundle_size:
<<: *docker_defaults
steps:
- *attach_workspace
- run:
name: Checking bundle size
command: |
sudo npm run build
sudo npm run bundlesize
npm run build
npm run bundlesize
lint:
<<: *docker_defaults
steps:
- *attach_workspace
- run:
name: ESLint Check
command: |
sudo npm run lint
npm run lint
type_definition_lint:
<<: *docker_defaults
steps:
- *attach_workspace
- run:
name: Type Definition Check
command: |
sudo npm run lint:types
npm run lint:types
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v14.18.1
v14.20.0
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@
}
],
"engines": {
"node": ">=12"
"node": ">=14"
},
"browserslist": [
"last 1 chrome versions",
Expand Down

0 comments on commit 08c395d

Please sign in to comment.