Add browser tests #23
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: Set up browser tests | |
working-directory: tests-browser | |
run: pnpm install && pnpm exec playwright install chromium firefox | |
- name: Install webkit browser on macos | |
working-directory: tests-browser | |
if: matrix.os == 'macos-latest' | |
run: pnpm exec playwright install | |
- name: Run browser tests (chromium, firefox) | |
run: | | |
pnpm test:browser | |
pnpm test:browser -- --browser=firefox | |
- name: Run browser tests (webkit) | |
if: matrix.os == 'macos-latest' | |
run: | | |
pnpm test:browser -- --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 && cd example && pnpm install | |
- name: check main.js | |
run: | | |
./scripts/check-runtime.sh example/main.js |