Skip to content

#3: Exclude unnecessary directories and files from PDD checks. #8

#3: Exclude unnecessary directories and files from PDD checks.

#3: Exclude unnecessary directories and files from PDD checks. #8

Workflow file for this run

# SPDX-FileCopyrightText: Copyright (c) 2024-2025 Objectionary.com
# SPDX-License-Identifier: MIT
---
# yamllint disable rule:line-length
name: make
'on':
push:
branches:
- master
- development
pull_request:
types: [opened, reopened, edited, synchronize]
branches:
- master
- development
jobs:
make:
strategy:
matrix:
node-version: [20.x]
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm i
- run: make
- uses: SonarSource/sonarqube-scan-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}