Skip to content

chore(deps): bump actions/dependency-review-action from 4.3.3 to 4.4.0 #380

chore(deps): bump actions/dependency-review-action from 4.3.3 to 4.4.0

chore(deps): bump actions/dependency-review-action from 4.3.3 to 4.4.0 #380

Workflow file for this run

name: Build & Test
on:
push:
pull_request:
jobs:
build-and-test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: install
run: npm install --frozen-lockfile
- run: npm run build
- name: SonarCloud Scan
if: env.SONAR_TOKEN != null
uses: SonarSource/sonarcloud-github-action@v3
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}