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.
This commit is contained in:
Jonas Jenwald 2026-05-26 15:12:22 +02:00
parent e7661983f7
commit 927da8c78e
2 changed files with 4 additions and 0 deletions

View File

@ -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/**'

View File

@ -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/**'