Skip to content

Commit 1ca9520

Browse files
committed
chore: set node version for circleci
1 parent 021f7ff commit 1ca9520

File tree

1 file changed

+15
-5
lines changed

1 file changed

+15
-5
lines changed

.circleci/config.yml

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,9 @@ orbs:
3939
jobs:
4040
# Set up a Linux environment for downstream jobs
4141
linux-checkout:
42-
executor: rn/linux_js
42+
executor:
43+
name: rn/linux_js
44+
node_version: '10'
4345
steps:
4446
- attach_workspace:
4547
at: .
@@ -50,28 +52,36 @@ jobs:
5052
paths: .
5153

5254
eslint:
53-
executor: rn/linux_js
55+
executor:
56+
name: rn/linux_js
57+
node_version: '10'
5458
steps:
5559
- attach_workspace:
5660
at: .
5761
- run: *eslint
5862

5963
type-check:
60-
executor: rn/linux_js
64+
executor:
65+
name: rn/linux_js
66+
node_version: '10'
6167
steps:
6268
- attach_workspace:
6369
at: .
6470
- run: *type-check
6571

6672
flow:
67-
executor: rn/linux_js
73+
executor:
74+
name: rn/linux_js
75+
node_version: '10'
6876
steps:
6977
- attach_workspace:
7078
at: .
7179
- run: *flow
7280

7381
jest:
74-
executor: rn/linux_js
82+
executor:
83+
name: rn/linux_js
84+
node_version: '10'
7585
steps:
7686
- attach_workspace:
7787
at: .

0 commit comments

Comments
 (0)