Skip to content

2.0.0

2.0.0 #1071

Workflow file for this run

name: CI
on:
- pull_request
- push
- workflow_dispatch
jobs:
node-ci:
name: Node CI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: gabrielrufino/node-ci@v3
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
sonar-token: ${{ secrets.SONAR_TOKEN }}
mutation-tests:
name: Mutation tests
runs-on: ubuntu-latest
needs:
- node-ci
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm ci
- run: npm run test:mutation
- uses: actions/upload-artifact@v3
with:
name: mutation-tests-reports
path: reports
concurrency:
group: ci_${{ github.ref }}
cancel-in-progress: true