Bump eslint-plugin-sonarjs from 0.25.1 to 1.0.4 #298
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 | |
# Service containers to run with `container-job` | |
services: | |
# Label used to access the service container | |
redis: | |
# Docker Hub image | |
image: redis | |
# Set health checks to wait until redis has started | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
# Maps port 6379 on service container to the host | |
- 6379:6379 | |
strategy: | |
matrix: | |
node-version: [18.x, 20.x] | |
mongoose-version: [[[email protected], bson@^4.7.2], [[email protected], bson@^5.5.0], [mongoose@latest, bson@^6.5.0]] | |
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: Installing ${{ matrix.mongoose-version[0] }} {{ matrix.mongoose-version[1] }} | |
run: npm i ${{ matrix.mongoose-version[0] }} ${{ matrix.mongoose-version[1] }} | |
- name: Coverage | |
run: npm run test | |
env: | |
# The hostname used to communicate with the Redis service container | |
REDIS_HOST: localhost | |
# The default Redis port | |
REDIS_PORT: 6379 | |
sonar: | |
name: Coverage & Sonar | |
runs-on: ubuntu-latest | |
# Service containers to run with `container-job` | |
services: | |
# Label used to access the service container | |
redis: | |
# Docker Hub image | |
image: redis | |
# Set health checks to wait until redis has started | |
options: >- | |
--health-cmd "redis-cli ping" | |
--health-interval 10s | |
--health-timeout 5s | |
--health-retries 5 | |
ports: | |
# Maps port 6379 on service container to the host | |
- 6379:6379 | |
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 | |
env: | |
# The hostname used to communicate with the Redis service container | |
REDIS_HOST: localhost | |
# The default Redis port | |
REDIS_PORT: 6379 | |
- 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-cache-mongoose | |
-Dsonar.projectKey=ilovepixelart_ts-cache-mongoose | |
-Dsonar.javascript.lcov.reportPaths=coverage/lcov.info | |
-Dsonar.sources=src | |
-Dsonar.tests=tests | |
-Dsonar.test.exclusions=tests/** | |
-Dsonar.coverage.exclusions=tests/** | |