feat(v3): NestedCheckboxGroup, FieldNestedCheckboxGroup #676
This file contains hidden or 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: 🔎 Code Quality | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
jobs: | |
linter: | |
name: 🧹 Linter | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 10 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/*' | |
cache: 'pnpm' | |
- name: Install deps | |
run: pnpm install | |
- name: Run eslint | |
run: pnpm run lint:eslint | |
typescriptChecker: | |
name: 🟦 TypeScript Checker | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [20, 22, 24, 'lts/*'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 10 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'pnpm' | |
- name: Install deps | |
run: pnpm install | |
- name: Run Typescript checker | |
run: pnpm run lint:ts | |
tests: | |
name: 🔬 Tests | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [20, 22, 24, 'lts/*'] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 10 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: 'pnpm' | |
- name: Install deps | |
run: pnpm install | |
- name: Run tests | |
run: SKIP_ENV_VALIDATION=true pnpm run test:ci |