Add vitest #1
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 | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
check-format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: ./.github/workflows/prepare.yml | |
- name: Check TypeScript types | |
run: bun run check | |
- name: Check code formatting | |
run: bun run format | |