chore(deps-dev): bump @types/node from 22.10.2 to 22.10.5 in the devdependencies group across 1 directory #24
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
pull_request: | |
types: [opened, reopened, synchronize, ready_for_review] | |
workflow_dispatch: | |
permissions: | |
pull-requests: write | |
jobs: | |
vitest: | |
if: | | |
github.event.pull_request.draft == false | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Setup nodejs | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
- name: Setup pnpm and Install dependencies | |
uses: ./.github/workflows/scripts/pnpmInstall | |
with: | |
devDeps: true | |
- name: Run Vitest | |
run: pnpm run test:coverage | |
- name: Report coverage | |
uses: davelosert/vitest-coverage-report-action@v2 | |