Skip to content

Merge pull request #1561 from tanem/review #4568

Merge pull request #1561 from tanem/review

Merge pull request #1561 from tanem/review #4568

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
check-latest: true
cache: 'npm'
- run: npm ci
- run: npx --no-install playwright install --with-deps
- run: npm run test:coverage
- name: Upload Playwright report
if: always()
uses: actions/upload-artifact@v6
with:
name: playwright-report
path: playwright-report
- uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}