only run js/sonarqube for changes to **.js, **.ts, package.json

This commit is contained in:
Ralf Vogler 2025-05-25 17:13:30 +02:00
parent 68d6122e8c
commit 656f746626
2 changed files with 8 additions and 0 deletions

View file

@ -3,6 +3,10 @@ name: "JS: deps, lint, tests"
# Run on push in any branch and changes in PRs.
on:
push:
paths:
- '**.js'
- '**.ts'
- 'package.json'
pull_request:
types: [opened, synchronize, reopened]

View file

@ -3,6 +3,10 @@ name: SonarQube Scan
# Run on push in any branch and changes in PRs.
on:
push:
paths:
- '**.js'
- '**.ts'
- 'package.json'
pull_request:
types: [opened, synchronize, reopened]