Upgraded @headlessui/react to latest version (2.1.3) #26
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: Tests and checks on push | |
on: | |
pull_request: | |
push: | |
branches: | |
- rewrite | |
jobs: | |
run-checks-and-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- name: Formatter/Linter | |
run: bun run biome:check | |
- name: Typecheck | |
run: bun run typecheck | |
- name: Unit tests | |
run: bun run test:unit:all | |
- name: Check translations jsons | |
run: bun run check-translation-jsons:no-write |