Skip to content

Commit 2894fd5

Browse files
authored
chore: add test:compat to CI tests (#3691)
1 parent 09b3b07 commit 2894fd5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+5170
-5391
lines changed

.github/workflows/tests.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
strategy:
2222
matrix:
2323
os: [ubuntu, windows]
24-
node-version: [10.x, 12.x, 14.x]
24+
node-version: [12.x, 14.x]
2525

2626
steps:
2727
- uses: actions/checkout@v2
@@ -69,5 +69,9 @@ jobs:
6969
run: yarn test:consumer
7070

7171
- name: yarn test:schemas
72-
if: matrix.node-version == '10.x'
72+
if: matrix.node-version == '12.x'
7373
run: yarn test:schemas
74+
75+
- name: yarn test:compat
76+
if: matrix.node-version == '14.x'
77+
run: yarn test:compat

api-extractor.json

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
{
2+
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3+
"mainEntryPointFilePath": "./libraries/botbuilder-core/lib/index.d.ts",
4+
"bundledPackages": [ ],
5+
"compiler": {
6+
},
7+
"apiReport": {
8+
"enabled": true
9+
},
10+
"docModel": {
11+
"enabled": false
12+
},
13+
"dtsRollup": {
14+
"enabled": false
15+
},
16+
"tsdocMetadata": {
17+
"enabled": false
18+
},
19+
"messages": {
20+
"compilerMessageReporting": {
21+
},
22+
"extractorMessageReporting": {
23+
"default": {
24+
"logLevel": "error"
25+
},
26+
"ae-missing-release-tag": {
27+
"logLevel": "none"
28+
},
29+
"ae-setter-with-docs": {
30+
"logLevel": "warning",
31+
"addToApiReportFile": true
32+
},
33+
"ae-missing-getter": {
34+
"logLevel": "warning",
35+
"addToApiReportFile": true
36+
}
37+
},
38+
"tsdocMessageReporting": {
39+
"default": {
40+
"logLevel": "none"
41+
}
42+
}
43+
}
44+
}
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"extends": "../../api-extractor.json",
3+
"mainEntryPointFilePath": "./lib/index.d.ts"
4+
}

0 commit comments

Comments
 (0)