The location of documentation is changed #1420
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: CI | |
on: pull_request | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '16.13.0' | |
- run: yarn install | |
# Verify it compiles | |
- run: yarn build | |
# Doesn't pass ATM | |
# - run: yarn tsc --noEmit |