Skip to content

code coverage lcov report #55

code coverage lcov report

code coverage lcov report #55

Workflow file for this run

name: Build
on:
push:
branches-ignore:
- experimental/**
- master
pull_request:
branches-ignore:
- experimental/**
- master
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
env:
SONARCLOUD_TOKEN: ${{ secrets.SONARCLOUD_TOKEN }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- run: npm install
- run: npm run lint
- run: npm run test:coverage
- run: npm run build
- uses: SonarSource/sonarcloud-github-action@master
if: env.SONARCLOUD_TOKEN != null
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ env.SONARCLOUD_TOKEN }}