Add estimated item size for each item #807
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: Lint and Test | |
on: | |
push: | |
branches-ignore: | |
- 'dependabot/**' | |
pull_request: | |
branches: | |
- master | |
- staging | |
jobs: | |
test: | |
name: Run static tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v1 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Setup Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 18.x | |
- name: Install dependencies | |
run: | | |
pnpm i | |
cd api && pnpm i --ignore-workspace | |
- name: Run lint | |
run: | | |
pnpm lint | |
- name: Run typecheck | |
run: | | |
cd app && pnpm tsc && cd .. | |
cd dashboard && pnpm tsc && cd .. | |
cd api && pnpm tsc |