- name: Lint
run: npm run lint
- - name: Tests & Coverage
- if: matrix.node == '16.x'
+ - name: Tests
+ run: npm run test
+
+ - name: Coverage & Linter Reports
+ if: "github.repository == 'poolifier/poolifier' && matrix.os == 'ubuntu-latest' && matrix.node == '16.x'"
run: |
- npm run test
npm run coverage
npm run lint:report
- env:
- CI: true
- name: Sonar Code Analysis
- if: "github.repository == 'poolifier/poolifier' && matrix.node == '16.x'"
+ if: "github.repository == 'poolifier/poolifier' && matrix.os == 'ubuntu-latest' && matrix.node == '16.x'"
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any