Skip to content

Bump vitest from 4.1.6 to 4.1.7 (#465) #1721

Bump vitest from 4.1.6 to 4.1.7 (#465)

Bump vitest from 4.1.6 to 4.1.7 (#465) #1721

Workflow file for this run

name: Sonar Cloud Analysis
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
sonarcloud:
name: SonarCloud
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 22
cache: "npm"
- name: Install dependencies
run: npm ci
continue-on-error: false
- name: Test and coverage
run: npm run test:coverage
continue-on-error: false
- name: SonarCloud Scan
uses: sonarsource/sonarqube-scan-action@v8.1.0
if: >-
(
github.event_name == 'push' &&
github.ref == 'refs/heads/main'
) || (
github.event_name == 'pull_request' &&
github.event.pull_request.head.repo.full_name == github.repository
) || (
github.event_name == 'workflow_dispatch'
)
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}