-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathworkflow.json
53 lines (52 loc) · 1.46 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
43
44
45
46
47
48
49
50
51
52
53
{
"$schema": "./node_modules/lib-tools/schemas/schema.json",
"projects": {
"zawgyi-unicode-translit-rules": {
"root": ".",
"tasks": {
"build": {
"outputPath": "dist/packages/zawgyi-unicode-translit-rules",
"script": {
"compilations": [
{
"declaration": true,
"target": "ES2015"
}
]
},
"packageJson": {
"scriptsField": false
}
},
"test": {
"testIndexFile": "test/index.ts",
"tsConfig": "tsconfig.test.json",
"envOverrides": {
"ci": {
"testIndexFile": "test/index.ts",
"codeCoverageExclude": [
"**/test.ts",
"**/index.ts",
"**/public_api.ts"
],
"reporters": [
"junit",
"coverage"
],
"browsers": [
"ChromeHeadlessCI"
],
"singleRun": true
},
"sbzg2uni": {
"testIndexFile": "test/test-sb-zg2uni.ts"
},
"sbuni2zg": {
"testIndexFile": "test/test-sb-uni2zg.ts"
}
}
}
}
}
}
}