Skip to content

⬆️ Bump @vitest/coverage-v8 from 3.0.3 to 3.0.4 #608

⬆️ Bump @vitest/coverage-v8 from 3.0.3 to 3.0.4

⬆️ Bump @vitest/coverage-v8 from 3.0.3 to 3.0.4 #608

Workflow file for this run

name: Tests
on: [pull_request, push, workflow_dispatch]
jobs:
checkout-and-run:
runs-on: macos-latest
strategy:
matrix:
node-version: [v22.12.0]
steps:
- name: Check out repository code
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Install Playwright
run: npx playwright install --with-deps
- name: Run tests
run: npm run test
timeout-minutes: 10