Skip to content

chore: add test:compat to CI tests #3691

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 18 commits into from
May 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
strategy:
matrix:
os: [ubuntu, windows]
node-version: [10.x, 12.x, 14.x]
node-version: [12.x, 14.x]

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -69,5 +69,9 @@ jobs:
run: yarn test:consumer

- name: yarn test:schemas
if: matrix.node-version == '10.x'
if: matrix.node-version == '12.x'
run: yarn test:schemas

- name: yarn test:compat
if: matrix.node-version == '14.x'
run: yarn test:compat
44 changes: 44 additions & 0 deletions api-extractor.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
{
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
"mainEntryPointFilePath": "./libraries/botbuilder-core/lib/index.d.ts",
"bundledPackages": [ ],
"compiler": {
},
"apiReport": {
"enabled": true
},
"docModel": {
"enabled": false
},
"dtsRollup": {
"enabled": false
},
"tsdocMetadata": {
"enabled": false
},
"messages": {
"compilerMessageReporting": {
},
"extractorMessageReporting": {
"default": {
"logLevel": "error"
},
"ae-missing-release-tag": {
"logLevel": "none"
},
"ae-setter-with-docs": {
"logLevel": "warning",
"addToApiReportFile": true
},
"ae-missing-getter": {
"logLevel": "warning",
"addToApiReportFile": true
}
},
"tsdocMessageReporting": {
"default": {
"logLevel": "none"
}
}
}
}
4 changes: 4 additions & 0 deletions libraries/adaptive-expressions/api-extractor.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"extends": "../../api-extractor.json",
"mainEntryPointFilePath": "./lib/index.d.ts"
}
Loading