Fix webchannel wrapper overrides #3800
Workflow file for this run
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
name: Test Package Paths | |
on: pull_request | |
jobs: | |
test: | |
name: Test Package Paths | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@master | |
with: | |
# This makes Actions fetch all Git history so run-changed script can diff properly. | |
fetch-depth: 0 | |
- name: Set up Node (16) | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16.x | |
- name: Yarn install | |
run: yarn | |
- name: Yarn build | |
run: yarn build | |
- name: Swap in public typings | |
run: yarn release:prepare | |
- name: Check paths | |
run: yarn ts-node scripts/ci-test/check-paths.ts |