only run js/sonarqube for changes to **.js, **.ts, package.json
This commit is contained in:
parent
68d6122e8c
commit
656f746626
2 changed files with 8 additions and 0 deletions
4
.github/workflows/js.yml
vendored
4
.github/workflows/js.yml
vendored
|
|
@ -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]
|
||||
|
||||
|
|
|
|||
4
.github/workflows/sonarqube.yml
vendored
4
.github/workflows/sonarqube.yml
vendored
|
|
@ -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]
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue