File tree Expand file tree Collapse file tree 2 files changed +15
-4
lines changed Expand file tree Collapse file tree 2 files changed +15
-4
lines changed Original file line number Diff line number Diff line change 10
10
browser-tools :
circleci/[email protected]
11
11
12
12
executors :
13
- default :
13
+ node :
14
14
docker :
15
15
- image : cimg/node:20.10.0
16
16
working_directory : ~/react-native-url-polyfill
@@ -144,7 +144,7 @@ commands:
144
144
145
145
jobs :
146
146
checkout :
147
- executor : default
147
+ executor : node
148
148
steps :
149
149
- checkout
150
150
- restore-cache-yarn
@@ -161,18 +161,25 @@ jobs:
161
161
paths :
162
162
- .
163
163
lint :
164
- executor : default
164
+ executor : node
165
165
steps :
166
166
- attach-workspace
167
167
- run :
168
168
name : Lint
169
169
command : yarn lint
170
+ type-check :
171
+ executor : node
172
+ steps :
173
+ - attach-workspace
174
+ - run :
175
+ name : Type Check
176
+ command : yarn type-check
170
177
test-js :
171
178
parameters :
172
179
react-native-version :
173
180
type : string
174
181
default : ' '
175
- executor : default
182
+ executor : node
176
183
steps :
177
184
- attach-workspace
178
185
- when :
@@ -282,6 +289,9 @@ workflows:
282
289
- lint :
283
290
requires :
284
291
- checkout
292
+ - type-check :
293
+ requires :
294
+ - checkout
285
295
- test-js :
286
296
requires :
287
297
- checkout
Original file line number Diff line number Diff line change 23
23
"scripts" : {
24
24
"test" : " jest" ,
25
25
"lint" : " eslint ." ,
26
+ "type-check" : " tsc index.d.ts" ,
26
27
"prepare" : " husky install" ,
27
28
"bundle-size" : " node scripts/bundle-size"
28
29
},
You can’t perform that action at this time.
0 commit comments