feat: don't display matching estimates for polygon #3308
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: Builder - Lint & Test & Typecheck | |
on: | |
push: | |
branches: | |
- main | |
- release | |
pull_request: | |
branches: | |
- "**" | |
jobs: | |
lint-test-typecheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
cache: 'pnpm' | |
- name: Install Dependencies | |
run: | | |
pnpm install | |
- name: Lint Builder | |
run: | | |
pnpm b-lint | |
- name: Test Builder | |
run: | | |
pnpm b-test | |
- name: Typecheck Builder | |
run: | | |
pnpm b-typecheck |