Don't ignore image files for tests

This commit is contained in:
Sirz Benjie 2025-03-30 13:51:15 -05:00
parent 53264fcdea
commit fd8612293e
No known key found for this signature in database
GPG Key ID: 4A524B4D196C759E

View File

@ -20,14 +20,12 @@ on:
- ".nvrmc" # Updates to node version can break tests
- "vite.*.ts" # vite.config.ts, vite.vitest.config.ts, vitest.workspace.ts
- "tsconfig*.json" # tsconfig.json tweaking can impact compilation
- "global.d.ts" # I think this can impact tests? (REMOVE COMMENT AFTER REVIEW)
- "global.d.ts"
- ".env.*"
# Blanket negations for files that cannot impact tests
- "!**/*.py" # No .py files
- "!**/*.sh" # No .sh files
- "!**/*.md" # No .md files
- "!**/*.png"
- "!**/*.jpg"
- "!**/.git*" # .gitkeep and family
pull_request:
@ -46,14 +44,12 @@ on:
- ".nvrmc" # Updates to node version can break tests
- "vite*" # vite.config.ts, vite.vitest.config.ts, vitest.workspace.ts
- "tsconfig*.json" # tsconfig.json tweaking can impact compilation
- "global.d.ts" # I think this can impact tests? (REMOVE COMMENT AFTER REVIEW)
- "global.d.ts"
- ".env.*"
# Blanket negations for files that cannot impact tests
- "!**/*.py" # No .py files
- "!**/*.sh" # No .sh files
- "!**/*.md" # No .md files
- "!**/*.png"
- "!**/*.jpg"
- "!**/.git*" # .gitkeep and family
merge_group:
types: [checks_requested]