feat(design): update font to mono as default, sans in blog (#63) #144
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: | |
push: | |
branches: | |
- main | |
jobs: | |
checks: | |
name: 🧪 Checks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
- name: enable corepack | |
run: corepack enable | |
- name: install dependencies | |
run: pnpm i | |
- name: check format | |
run: pnpm format:check | |
- name: build | |
run: pnpm build | |
- name: lint | |
run: pnpm lint | |
- name: typecheck | |
run: pnpm typecheck |