File tree 4 files changed +31
-19
lines changed
4 files changed +31
-19
lines changed Original file line number Diff line number Diff line change @@ -25,21 +25,10 @@ jobs:
25
25
node-version : ${{ matrix.node }}
26
26
27
27
- name : Build, test and lint all projects (except website)
28
- run : yarn nx run-many -t build lint test --exclude=rxjs.dev
29
-
30
- - name : rxjs lint
31
- run : yarn workspace rxjs lint
32
- - name : rxjs build
33
- run : yarn workspace rxjs build
34
- - name : rxjs test
35
- run : yarn workspace rxjs test
36
- - name : rxjs dtslint
37
- run : yarn workspace rxjs dtslint
38
- - name : rxjs test:import
39
- run : yarn workspace rxjs test:import
40
- - name : rxjs test:esm
41
- run : yarn workspace rxjs test:esm
28
+ run : yarn nx run-many -t build lint test dtslint test:import test:esm --exclude=rxjs.dev
29
+
42
30
- name : rxjs.dev build
43
31
run : yarn workspace rxjs.dev build --prod
32
+
44
33
- name : rxjs.dev test
45
34
run : yarn workspace rxjs.dev test --watch=false --browsers=ChromeHeadless
Original file line number Diff line number Diff line change 9
9
"inputs" : [" production" , " ^production" ],
10
10
"cache" : true
11
11
},
12
- "test:circular" : {
13
- "dependsOn" : [" build" ]
14
- },
15
12
"test" : {
16
13
"cache" : true
17
14
},
Original file line number Diff line number Diff line change 55
55
" prettier --write"
56
56
],
57
57
"*.{js,css,md}" : " prettier --write"
58
+ },
59
+ "volta" : {
60
+ "node" : " 20.11.1" ,
61
+ "yarn" : " 1.22.21"
58
62
}
59
63
}
60
-
Original file line number Diff line number Diff line change 60
60
},
61
61
"scripts" : {
62
62
"lint" : " eslint --ext=ts,js src spec spec-dtslint" ,
63
- "dtslint" : " npm run lint && tsc -b ./src/tsconfig.types.json" ,
63
+ "dtslint" : " tsc -b ./src/tsconfig.types.json" ,
64
64
"test" : " cross-env TS_NODE_PROJECT=tsconfig.mocha.json mocha --config spec/support/.mocharc.js \" spec/**/*-spec.ts\" " ,
65
65
"test:esm" : " node spec/module-test-spec.mjs" ,
66
66
"test:circular" : " dependency-cruiser --validate .dependency-cruiser.json -x \" ^node_modules\" dist/esm" ,
180
180
"dependsOn" : [
181
181
" ^build"
182
182
]
183
+ },
184
+ "test:esm" : {
185
+ "dependsOn" : [
186
+ " build"
187
+ ],
188
+ "cache" : true
189
+ },
190
+ "test:circular" : {
191
+ "dependsOn" : [
192
+ " build"
193
+ ]
194
+ },
195
+ "test:import" : {
196
+ "dependsOn" : [
197
+ " build"
198
+ ],
199
+ "cache" : true
200
+ },
201
+ "dtslint" : {
202
+ "dependsOn" : [
203
+ " ^build"
204
+ ],
205
+ "cache" : true
183
206
}
184
207
}
185
208
}
You can’t perform that action at this time.
0 commit comments