Add browser tests #16
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: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
node: [18, 20, 22] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
cache: pnpm | |
cache-dependency-path: pnpm-lock.yaml | |
- run: pnpm install && pnpm test -- --bail 1 | |
- run: pnpm build && npm publish --dry-run | |
- uses: codecov/codecov-action@v4 | |
if: matrix.os == 'ubuntu-latest' && matrix.node == 22 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Run browser tests (chromium, firefox) | |
working-directory: tests-browser | |
run: | | |
pnpm install && pnpm exec playwright install chromium firefox | |
pnpm test | |
pnpm test -- --browser=firefox | |
- name: Run browser tests (webkit) | |
working-directory: tests-browser | |
if: matrix.os == 'macos-latest' | |
run: | | |
pnpm exec playwright install webkit | |
pnpm test -- --browser=webkit | |
check-runtimes: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: pnpm | |
cache-dependency-path: pnpm-lock.yaml | |
- uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version: latest | |
- uses: denoland/setup-deno@v2 | |
with: | |
deno-version: v2.x | |
- run: pnpm install && pnpm build | |
- run: cd example && pnpm install | |
- run: bun run example/main.js | |
- run: deno run --allow-read example/main.js | |
- run: node example/main.js |