Skip to content

Commit 890c972

Browse files
authored
Merge pull request #156 from react-native-community/@mikehardy/node-v16
2 parents 5f3bf5e + 3ca5539 commit 890c972

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

src/commands/setup_macos_executor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ parameters:
44
node_version:
55
description: The version of Node to use. This can be either a major version ("8"), a major and minor ("8.4"), or a fully qualified version ("8.4.1").
66
type: string
7-
default: "12"
7+
default: "16"
88
homebrew_cache:
99
description: Should we cache after brew install? Defaults to true
1010
type: boolean

src/examples/full.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ usage:
1212
checkout_code:
1313
executor:
1414
name: rn/linux_js
15-
node_version: '12'
15+
node_version: '16'
1616
steps:
1717
- checkout
1818
- persist_to_workspace:

src/executors/linux_js.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
parameters:
22
node_version:
3-
description: The version of Node to use. This can be a full SemVer point release (such as 10.16.3), or just the minor release (such as 12.6), or a version alias. See https://circleci.com/developer/images/image/cimg/node#image-tags
3+
description: The version of Node to use. This can be a full SemVer point release (such as 16.15.2), or just the minor release (such as 18.2), or a version alias. See https://circleci.com/developer/images/image/cimg/node#image-tags
44
type: string
5-
default: '12.22'
5+
default: '16.15'
66
resource_class:
77
description: Changes the resource class of the executor. Requires a support request to enable the resource_class parameter. See https://circleci.com/docs/2.0/configuration-reference/#resource_class
88
type: string
99
default: medium
1010
docker:
1111
- image: cimg/node:<<parameters.node_version>>
12-
resource_class: <<parameters.resource_class>>
12+
resource_class: <<parameters.resource_class>>

src/jobs/android_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ parameters:
6565
node_version:
6666
description: The version of Node to use. This can be either a major version ("8"), a major and minor ("8.4"), or a fully qualified version ("8.4.1").
6767
type: string
68-
default: "12"
68+
default: "16"
6969
homebrew_cache:
7070
description: Should we cache after brew install? Defaults to true
7171
type: boolean

src/jobs/ios_build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ parameters:
7070
node_version:
7171
description: The version of Node to use. This can be either a major version ("8"), a major and minor ("8.4"), or a fully qualified version ("8.4.1").
7272
type: string
73-
default: "12"
73+
default: "16"
7474
homebrew_cache:
7575
description: Should we cache after brew install? Defaults to true
7676
type: boolean

src/jobs/ios_build_and_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ parameters:
8484
node_version:
8585
description: The version of Node to use. This can be either a major version ("8"), a major and minor ("8.4"), or a fully qualified version ("8.4.1").
8686
type: string
87-
default: "12"
87+
default: "16"
8888
homebrew_cache:
8989
description: Should we cache after brew install? Defaults to true
9090
type: boolean

0 commit comments

Comments
 (0)