Merge pull request #719 from thebuilder/feat/drop-semantic-release #920
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: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- run: npm install --global corepack@latest | |
- run: corepack enable | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Install playwright | |
run: pnpm exec playwright install | |
- name: Lint | |
run: pnpm biome ci . | |
- name: Test | |
run: pnpm vitest --coverage | |
env: | |
CI: true | |
- name: Build | |
run: pnpm build | |
test_matrix: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
react: | |
- 17 | |
- 18 | |
- 19 | |
- latest | |
steps: | |
- run: npm install --global corepack@latest | |
- run: corepack enable | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install | |
- name: Install legacy testing-library | |
if: ${{ startsWith(matrix.react, '17') }} | |
run: pnpm add -D @testing-library/[email protected] | |
- name: Install React types | |
run: pnpm add -D @types/react@${{ matrix.react }} @types/react-dom@${{ matrix.react }} | |
- name: Install ${{ matrix.react }} | |
run: pnpm add -D react@${{ matrix.react }} react-dom@${{ matrix.react }} | |
- name: Validate types | |
run: pnpm tsc | |
- name: Run test | |
run: | | |
pnpm exec playwright install | |
pnpm test |