Bump @typescript-eslint/eslint-plugin from 7.18.0 to 8.3.0 #109
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: PR check | |
on: | |
workflow_dispatch: | |
# Trigger analysis when pushing in master or pull requests, | |
# and when creating a pull request. | |
push: | |
branches: | |
- master | |
- feature* | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
tests: | |
name: Coverage | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
# Disabling shallow clone is recommended for improving relevancy of reporting | |
fetch-depth: 0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
- name: Installing dependencies | |
run: npm ci | |
- name: Coverage | |
run: npm run test | |
sonar: | |
name: Coverage & Sonar | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [22.x] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
# Disabling shallow clone is recommended for improving relevancy of reporting | |
fetch-depth: 0 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: npm | |
- name: Installing dependencies | |
run: npm ci | |
- name: Lint | |
run: npm run lint | |
- name: Coverage | |
run: npm run test | |
- name: Scan | |
if: env.SONAR_TOKEN | |
uses: sonarsource/sonarcloud-github-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
with: | |
args: > | |
-Dsonar.organization=ilovepixelart | |
-Dsonar.projectName=ts-rule-engine | |
-Dsonar.projectKey=ilovepixelart_ts-rule-engine | |
-Dsonar.javascript.lcov.reportPaths=coverage/lcov.info | |
-Dsonar.sources=src | |
-Dsonar.tests=tests | |
-Dsonar.test.exclusions=tests/** | |
-Dsonar.coverage.exclusions=tests/** | |