Skip to content

Bump nodemon from 3.1.3 to 3.1.4 #260

Bump nodemon from 3.1.3 to 3.1.4

Bump nodemon from 3.1.3 to 3.1.4 #260

Workflow file for this run

name: Sonarcloud
on:
push:
branches: [ master ]
pull_request:
types: [ opened, synchronize, reopened ]
jobs:
SonarCloud:
runs-on: ubuntu-latest
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
steps:
- uses: actions/checkout@v4
if: ${{ env.SONAR_TOKEN != null }}
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Setup Node.js
uses: actions/setup-node@v4
if: ${{ env.SONAR_TOKEN != null }}
with:
node-version: 20.x
cache: npm
- name: Run Tests
if: ${{ env.SONAR_TOKEN != null }}
run: npm ci && npm run test
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
if: ${{ env.SONAR_TOKEN != null }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any