Skip to content

Commit

Permalink
Run tests with coverage in the build action
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaugiralt committed May 17, 2024
1 parent d441887 commit bcfcd47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Check formatting with Prettier
run: npm run format:check
- name: Testing
run: npm test
run: npm run test
sonar:
name: Sonar Testing
needs: [test]
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Testing
run: npm test
run: npm run test:coverage
- uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down

0 comments on commit bcfcd47

Please sign in to comment.