Skip to content
This repository was archived by the owner on Feb 19, 2024. It is now read-only.

Commit 52c203a

Browse files
committed
Upgrade Node to v14.11
Changes: - `package.json` field `engines.node` - updated, previously: `>=8.11.0` - `.nvmrc` - created - `.circleci/config.yml` Docker image for `container_config_node` - Docker updated, previously: `circleci/node:8-browsers`
1 parent 1b43f8d commit 52c203a

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

.circleci/config.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33

44
references:
55

6-
container_config_node8: &container_config_node8
6+
container_config_node14: &container_config_node14
77
working_directory: ~/project/build
88
docker:
9-
- image: circleci/node:8-browsers
9+
- image: circleci/node:14-browsers
1010

1111
workspace_root: &workspace_root
1212
~/project
@@ -55,7 +55,7 @@ version: 2
5555
jobs:
5656

5757
build:
58-
<<: *container_config_node8
58+
<<: *container_config_node14
5959
steps:
6060
- checkout
6161
- run:
@@ -85,7 +85,7 @@ jobs:
8585
- build
8686

8787
test:
88-
<<: *container_config_node8
88+
<<: *container_config_node14
8989
steps:
9090
- *attach_workspace
9191
- run:
@@ -101,7 +101,7 @@ jobs:
101101
destination: test-results
102102

103103
publish:
104-
<<: *container_config_node8
104+
<<: *container_config_node14
105105
steps:
106106
- *attach_workspace
107107
- run:

.nvmrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
14.11

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
"standard": "^12.0.1"
3232
},
3333
"engines": {
34-
"node": ">=8.11.0"
34+
"node": "14.x"
3535
}
3636
}

0 commit comments

Comments
 (0)