From 927da8c78eaf1fee2c980e92d9ff79d04f923e7f Mon Sep 17 00:00:00 2001 From: Jonas Jenwald Date: Tue, 26 May 2026 15:12:22 +0200 Subject: [PATCH] Run unit-tests and integration-tests when the `external/builder/` folder is changed Given that changes to either the Babel plugin or the "old" builder could accidentally cause issues in the built files, it seems like a good idea to run all test-suites when the `external/builder/` folder is changed. --- .github/workflows/integration_tests.yml | 2 ++ .github/workflows/unit_tests.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index a00f86dcc..573bfeb08 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -3,6 +3,7 @@ on: push: paths: - 'gulpfile.mjs' + - 'external/builder/**' - 'src/**' - 'test/test.mjs' - 'test/integration/**' @@ -13,6 +14,7 @@ on: pull_request: paths: - 'gulpfile.mjs' + - 'external/builder/**' - 'src/**' - 'test/test.mjs' - 'test/integration/**' diff --git a/.github/workflows/unit_tests.yml b/.github/workflows/unit_tests.yml index 07f19210d..6e637d053 100644 --- a/.github/workflows/unit_tests.yml +++ b/.github/workflows/unit_tests.yml @@ -3,6 +3,7 @@ on: push: paths: - 'gulpfile.mjs' + - 'external/builder/**' - 'src/**' - 'test/test.mjs' - 'test/unit/**' @@ -13,6 +14,7 @@ on: pull_request: paths: - 'gulpfile.mjs' + - 'external/builder/**' - 'src/**' - 'test/test.mjs' - 'test/unit/**'