Skip to content

chore(release): pulling release/2.0.8 into master #147

chore(release): pulling release/2.0.8 into master

chore(release): pulling release/2.0.8 into master #147

Workflow file for this run

name: 'Unit Tests, Coverage & Sonar'
on:
workflow_dispatch:
push:
branches: ['master', 'develop']
pull_request:
branches: ['master', 'develop']
types: ['opened', 'reopened', 'synchronize']
jobs:
build:
name: 'Unit Tests, Coverage & Sonar'
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Execute unit tests
env:
HUSKY: 0
run: |
npm ci
npm run test:ci
npm run check:lint:ci
- name: Fix filesystem paths in generated reports
run: |
./scripts/fix-reports-path-in-github-runner.sh
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
with:
files: ./coverage/clover.xml