Run various test-suite when the external/ folder is modified

Given that the `external/` folder contains various imported code/resources, all of which could affect functionality and/or rendering, it seems safest to simply run browser/font/integration/unit tests whenever any part of that folder is touched.
This commit is contained in:
Jonas Jenwald 2026-06-07 16:03:40 +02:00
parent f86b5abb05
commit 9c0b56ac07
4 changed files with 8 additions and 6 deletions

View File

@ -3,7 +3,7 @@ on:
push:
paths:
- 'gulpfile.mjs'
- 'external/builder/**'
- 'external/**'
- 'src/**'
- 'test/images/**'
- 'test/pdfs/**'
@ -20,7 +20,7 @@ on:
pull_request:
paths:
- 'gulpfile.mjs'
- 'external/builder/**'
- 'external/**'
- 'src/**'
- 'test/images/**'
- 'test/pdfs/**'

View File

@ -3,6 +3,7 @@ on:
push:
paths:
- 'gulpfile.mjs'
- 'external/**'
- 'src/**'
- 'test/test.mjs'
- 'test/font/**'
@ -12,6 +13,7 @@ on:
pull_request:
paths:
- 'gulpfile.mjs'
- 'external/**'
- 'src/**'
- 'test/test.mjs'
- 'test/font/**'

View File

@ -3,7 +3,7 @@ on:
push:
paths:
- 'gulpfile.mjs'
- 'external/builder/**'
- 'external/**'
- 'src/**'
- 'test/test.mjs'
- 'test/integration/**'
@ -14,7 +14,7 @@ on:
pull_request:
paths:
- 'gulpfile.mjs'
- 'external/builder/**'
- 'external/**'
- 'src/**'
- 'test/test.mjs'
- 'test/integration/**'

View File

@ -3,7 +3,7 @@ on:
push:
paths:
- 'gulpfile.mjs'
- 'external/builder/**'
- 'external/**'
- 'src/**'
- 'test/test.mjs'
- 'test/unit/**'
@ -14,7 +14,7 @@ on:
pull_request:
paths:
- 'gulpfile.mjs'
- 'external/builder/**'
- 'external/**'
- 'src/**'
- 'test/test.mjs'
- 'test/unit/**'