From c7668b5505d329ac1d59db4c828892e350b5d6e5 Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Wed, 30 Jul 2025 11:23:01 +0200 Subject: [PATCH] backend: update workflow triggers to include package.json and tests paths --- .github/workflows/backend-integration-test.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/backend-integration-test.yaml b/.github/workflows/backend-integration-test.yaml index bd7fff6..f88dcf7 100644 --- a/.github/workflows/backend-integration-test.yaml +++ b/.github/workflows/backend-integration-test.yaml @@ -3,6 +3,9 @@ on: push: paths: - 'backend/src/**' + - 'backend/package.json' + - 'backend/package-lock.json' + - 'backend/tests/**' pull_request: paths: - 'backend/src/**'