Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ jobs:
npm ci
npm run lint
npm run test:cov
dep_scan: true
dir: backend
node_version: "22"
sonar_args: >
Expand All @@ -53,7 +54,7 @@ jobs:
-Dsonar.javascript.lcov.reportPaths=./coverage/lcov.info
sonar_token: ${{ env.SONAR_TOKEN }}
supply_scan: true
triggers: ('backend/')
# triggers: ('backend/')

frontend-tests:
name: Frontend Tests
Expand All @@ -69,6 +70,7 @@ jobs:
npm ci
npm run lint
npm run test:cov
dep_scan: true
dir: frontend
node_version: "22"
sonar_args: >
Expand All @@ -80,7 +82,7 @@ jobs:
-Dsonar.javascript.lcov.reportPaths=./coverage/lcov.info
sonar_token: ${{ env.SONAR_TOKEN }}
supply_scan: true
triggers: ('frontend/')
# triggers: ('frontend/')

# https://github.com/marketplace/actions/aqua-security-trivy
trivy:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/pr-open.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ jobs:
db_triggers: ('charts/crunchy/')

tests:
name: Tests
if: needs.deploys.outputs.triggered == 'true'
needs: [deploys]
uses: ./.github/workflows/.tests.yml
name: Tests
if: needs.deploys.outputs.triggered == 'true'
needs: [deploys]
uses: ./.github/workflows/.tests.yml

results:
name: PR Results
Expand Down
Loading
Loading