Skip to content

feat: add hmr e2e test #5

feat: add hmr e2e test

feat: add hmr e2e test #5

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
jobs:
test:
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node-version: [18.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v2
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: Install deps
run: |
pnpm i --frozen-lockfile
pnpm playwright install
- name: Test
run: pnpm test