Skip to content

Release 0.5.0

Release 0.5.0 #29

Workflow file for this run

name: Sonarcloud
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
sonarcloud:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
steps:
- uses: actions/setup-node@v4
with:
node-version: 21
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install dependencies
run: npm install
- name: Test and coverage
run: npm run test:cov
- name: SonarCloud Scan
uses: sonarsource/sonarcloud-github-action@master