fix: payout issue in v2 #5041
Workflow file for this run
This file contains hidden or 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 lint:builder | |
- name: Test Builder | |
run: | | |
pnpm test:builder | |
- name: Typecheck Builder | |
run: | | |
pnpm typecheck:builder |