Skip to content

ci(eslint): add eslint-plugin-jsdoc (#53) #193

ci(eslint): add eslint-plugin-jsdoc (#53)

ci(eslint): add eslint-plugin-jsdoc (#53) #193

Workflow file for this run

name: Code Coverage
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
quality:
name: Code Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 8.6.10
- uses: actions/setup-node@v3
with:
cache: "pnpm"
cache-dependency-path: "pnpm-lock.yaml"
node-version-file: ".nvmrc"
- run: pnpx playwright install
- run: pnpm install --frozen-lockfile
- run: pnpm test
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}