Skip to content

build(deps-dev): bump @vitest/coverage-v8 from 3.2.4 to 4.0.14 #589

build(deps-dev): bump @vitest/coverage-v8 from 3.2.4 to 4.0.14

build(deps-dev): bump @vitest/coverage-v8 from 3.2.4 to 4.0.14 #589

Workflow file for this run

name: Test
on:
# Trigger analysis when pushing in master or pull requests, and when creating
# a pull request.
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
jobs:
Tests:
runs-on: ubuntu-latest
name: TypeScript Tests
permissions:
contents: read
steps:
- uses: actions/checkout@v6
with:
# Disabling shallow clone is recommended for improving relevancy of reporting
fetch-depth: 0
persist-credentials: false
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version-file: .node-version
cache: npm
- name: Install Dependencies
run: npm ci --no-fund
- name: Run Tests Typescript
run: npm run test
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Note: SonarQube requires the results from tests to get the coverage report
- name: SonarQube Scan
uses: SonarSource/sonarqube-scan-action@fd88b7d7ccbaefd23d8f36f73b59db7a3d246602 # v5
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}