Skip to content

chore: update workflow #71

chore: update workflow

chore: update workflow #71

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [macos-latest, ubuntu-latest, windows-latest]
node: [22]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- uses: pnpm/[email protected]
with:
version: 9
- name: Install dependencies
run: pnpm i
- name: Install Playwright
run: npx playwright install --with-deps
- name: Run your tests
run: pnpm test
- name: Upload test results
if: always()
uses: actions/upload-artifact@v4
with:
name: playwright-results
path: test-results