Skip to content

chore(deps)(deps-dev): bump the minor-updates group across 1 directory with 10 updates #50

chore(deps)(deps-dev): bump the minor-updates group across 1 directory with 10 updates

chore(deps)(deps-dev): bump the minor-updates group across 1 directory with 10 updates #50

Workflow file for this run

name: Pull Request
on:
pull_request:
branches:
- main
types: [opened, synchronize, reopened]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Lint code
run: npm run lint
- name: Run tests
run: npm run test:cvg
- name: Build library
run: npm run build
- name: SonarQube Scan
if: github.actor != 'dependabot[bot]'
uses: SonarSource/sonarqube-scan-action@v5
env:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}