-
Notifications
You must be signed in to change notification settings - Fork 1
/
workflow.json
42 lines (41 loc) · 1.03 KB
/
workflow.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"$schema": "./node_modules/lib-tools/schemas/schema.json",
"projects": {
"translit-js": {
"root": ".",
"tasks": {
"build": {
"outputPath": "dist/packages/translit-js",
"script": {
"compilations": "auto",
"umdId": "translit"
},
"packageJson": {
"scriptsField": false
}
},
"test": {
"testIndexFile": "test/index.ts",
"tsConfig": "tsconfig.test.json",
"envOverrides": {
"ci": {
"codeCoverageExclude": [
"**/test.ts",
"**/index.ts",
"**/public_api.ts"
],
"reporters": [
"junit",
"coverage"
],
"browsers": [
"ChromeHeadlessCI"
],
"singleRun": true
}
}
}
}
}
}
}