Skip to content

fix: correct path to mulitselect demo #4214

fix: correct path to mulitselect demo

fix: correct path to mulitselect demo #4214

Workflow file for this run

name: Coverage
on:
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
coverage:
runs-on: ubuntu-latest
steps:
# Setup
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4.0.0 # Uses version from package.json#packageManager
- name: Setup Node (using .node-version)
uses: actions/setup-node@v4
with:
node-version-file: '.node-version'
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
- name: Generate and check coverage
uses: ArtiomTr/jest-coverage-report-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
package-manager: pnpm
test-script: pnpm test:ci