-
Notifications
You must be signed in to change notification settings - Fork 282
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add missing packages to consumer test (#3737)
* feat: depcheck * feat: separate workflows instead of conditional exec * Revert "bump: runtypes (#3648)" This reverts commit c7a22fb. * Downgrade other runtypes references * chore: add missing packages to consumer test Fixes #3736 * fix: downlevel runtime integrations * fix: better consumer test errors * feat: zod replaces runtypes for tsc compat * fix: runtime error devexp, luis tests * clean botframework-schema references in tests Co-authored-by: stevengum <14935595+stevengum@users.noreply.github.com>
- Loading branch information
Showing
69 changed files
with
1,101 additions
and
293 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
ignores: ["mocha", "rimraf", "sinon"] | ||
ignorePatterns: [".eslintrc.json", "lib"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: depcheck.yml | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
- '4.12' | ||
- '4.13' | ||
pull_request: | ||
branches: | ||
- main | ||
- '4.12' | ||
- '4.13' | ||
|
||
jobs: | ||
ci: | ||
name: depcheck | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: use node 14.x | ||
uses: actions/setup-node@v2-beta | ||
with: | ||
node-version: 14.x | ||
|
||
- name: yarn cache dir | ||
id: yarn-cache-dir | ||
run: echo "::set-output name=dir::$(yarn cache dir)" | ||
|
||
- uses: actions/cache@v2 | ||
with: | ||
path: ${{ steps.yarn-cache-dir.outputs.dir }} | ||
key: ${{ runner.os }}-node14.x-yarn-${{ hashFiles('**/yarn.lock') }} | ||
|
||
- name: yarn | ||
run: yarn --frozen-lockfile | ||
|
||
- name: yarn depcheck | ||
run: yarn depcheck |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: lint.yml | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
- '4.12' | ||
- '4.13' | ||
pull_request: | ||
branches: | ||
- main | ||
- '4.12' | ||
- '4.13' | ||
|
||
jobs: | ||
ci: | ||
name: lint | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: use node 14.x | ||
uses: actions/setup-node@v2-beta | ||
with: | ||
node-version: 14.x | ||
|
||
- name: yarn cache dir | ||
id: yarn-cache-dir | ||
run: echo "::set-output name=dir::$(yarn cache dir)" | ||
|
||
- uses: actions/cache@v2 | ||
with: | ||
path: ${{ steps.yarn-cache-dir.outputs.dir }} | ||
key: ${{ runner.os }}-node14.x-yarn-${{ hashFiles('**/yarn.lock') }} | ||
|
||
- name: yarn | ||
run: yarn --frozen-lockfile | ||
|
||
- name: yarn lint | ||
run: yarn lint |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: test-compat.yml | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
- '4.12' | ||
- '4.13' | ||
pull_request: | ||
branches: | ||
- main | ||
- '4.12' | ||
- '4.13' | ||
|
||
jobs: | ||
ci: | ||
name: test:compat | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: use node 14.x | ||
uses: actions/setup-node@v2-beta | ||
with: | ||
node-version: 14.x | ||
|
||
- name: yarn cache dir | ||
id: yarn-cache-dir | ||
run: echo "::set-output name=dir::$(yarn cache dir)" | ||
|
||
- uses: actions/cache@v2 | ||
with: | ||
path: ${{ steps.yarn-cache-dir.outputs.dir }} | ||
key: ${{ runner.os }}-node14.x-yarn-${{ hashFiles('**/yarn.lock') }} | ||
|
||
- name: yarn | ||
run: yarn --frozen-lockfile | ||
|
||
- name: yarn build | ||
run: yarn build | ||
|
||
- name: yarn test:compat | ||
run: yarn test:compat |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: test-consumer.yml | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
- '4.12' | ||
- '4.13' | ||
pull_request: | ||
branches: | ||
- main | ||
- '4.12' | ||
- '4.13' | ||
|
||
jobs: | ||
ci: | ||
name: test:consumer | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: use node 14.x | ||
uses: actions/setup-node@v2-beta | ||
with: | ||
node-version: 14.x | ||
|
||
- name: yarn cache dir | ||
id: yarn-cache-dir | ||
run: echo "::set-output name=dir::$(yarn cache dir)" | ||
|
||
- uses: actions/cache@v2 | ||
with: | ||
path: ${{ steps.yarn-cache-dir.outputs.dir }} | ||
key: ${{ runner.os }}-node14.x-yarn-${{ hashFiles('**/yarn.lock') }} | ||
|
||
- name: yarn | ||
run: yarn --frozen-lockfile | ||
|
||
- name: yarn build | ||
run: yarn build | ||
|
||
- name: yarn test:consumer | ||
run: yarn test:consumer |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
name: test-repoutils.yml | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
- '4.12' | ||
- '4.13' | ||
pull_request: | ||
branches: | ||
- main | ||
- '4.12' | ||
- '4.13' | ||
|
||
jobs: | ||
ci: | ||
name: test:repoutils | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: use node 14.x | ||
uses: actions/setup-node@v2-beta | ||
with: | ||
node-version: 14.x | ||
|
||
- name: yarn cache dir | ||
id: yarn-cache-dir | ||
run: echo "::set-output name=dir::$(yarn cache dir)" | ||
|
||
- uses: actions/cache@v2 | ||
with: | ||
path: ${{ steps.yarn-cache-dir.outputs.dir }} | ||
key: ${{ runner.os }}-node14.x-yarn-${{ hashFiles('**/yarn.lock') }} | ||
|
||
- name: yarn | ||
run: yarn --frozen-lockfile | ||
|
||
- name: yarn test:repoutils | ||
run: yarn test:repoutils |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
name: test-schemas.yml | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
- '4.12' | ||
- '4.13' | ||
pull_request: | ||
branches: | ||
- main | ||
- '4.12' | ||
- '4.13' | ||
|
||
jobs: | ||
ci: | ||
name: test:schemas | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: use node 14.x | ||
uses: actions/setup-node@v2-beta | ||
with: | ||
node-version: 14.x | ||
|
||
- name: yarn cache dir | ||
id: yarn-cache-dir | ||
run: echo "::set-output name=dir::$(yarn cache dir)" | ||
|
||
- uses: actions/cache@v2 | ||
with: | ||
path: ${{ steps.yarn-cache-dir.outputs.dir }} | ||
key: ${{ runner.os }}-node14.x-yarn-${{ hashFiles('**/yarn.lock') }} | ||
|
||
- name: yarn | ||
run: yarn --frozen-lockfile | ||
|
||
- name: yarn build | ||
run: yarn build | ||
|
||
- name: yarn test:schemas | ||
run: yarn test:schemas |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.