Allow users to skip validation or to fallback to server validation #103
Workflow file for this run
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: | |
push: | |
branches: main | |
pull_request: | |
jobs: | |
install: | |
name: Install packages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup packages | |
uses: ./.github/actions/setup | |
format: | |
name: Run biome check | |
needs: install | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup packages | |
uses: ./.github/actions/setup | |
- name: Biome check | |
run: npm run check | |
test: | |
name: Run test | |
needs: install | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup packages | |
uses: ./.github/actions/setup | |
- name: Vitest tests | |
run: npm run test | |
typecheck: | |
name: Run typecheck | |
needs: install | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup packages | |
uses: ./.github/actions/setup | |
- name: check types | |
run: npm run typecheck |