Track lazy loaded components (#82) #171
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: Checks | |
on: | |
pull_request: | |
branches: [main] | |
push: | |
branches: [main] | |
jobs: | |
build: | |
name: 'Build and Test' | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest # TODO: this should probably run on multiple OSes | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: ./.github/actions/setup | |
- name: Check formatting | |
run: pnpm format:check | |
- name: Lint | |
run: pnpm lint | |
- name: Typecheck | |
run: pnpm typecheck | |
- name: Build | |
run: pnpm build | |
- name: Test | |
run: pnpm test | |
# - name: Check API declarations and docs work as intended | |
# run: pnpm api:check |