chore(deps): update dependency @antfu/eslint-config to ^6.4.2 (#233) #1107
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: CI | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| paths-ignore: | |
| - "**/*.md" | |
| - "**/*.gitignore" | |
| - LICENSE | |
| jobs: | |
| typecheck: | |
| name: Typecheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Environment | |
| uses: ./.github/actions/setup | |
| - name: Typecheck | |
| run: pnpm typecheck | |
| tests: | |
| strategy: | |
| matrix: | |
| zod-version: [v3, v4] | |
| runs-on: ubuntu-latest | |
| name: Tests - zod ${{ matrix.zod-version }} | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Environment | |
| uses: ./.github/actions/setup | |
| - name: Install Playwright browsers | |
| run: pnpm exec playwright install | |
| - name: Install zod v3 | |
| if: matrix.zod-version == 'v3' | |
| run: pnpm add zod@3 --filter @zorm-ts/core | |
| - name: Zod version | |
| run: pnpm list zod --filter @zorm-ts/core | |
| # Need to build the core package for reactivity tests | |
| - name: Build core | |
| run: pnpm build:core | |
| - name: Tests | |
| run: pnpm test | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Environment | |
| uses: ./.github/actions/setup | |
| - name: ESLint | |
| run: pnpm lint | |
| build: | |
| name: Build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Environment | |
| uses: ./.github/actions/setup | |
| - name: Build | |
| run: pnpm build |