From fd8612293ed44223664cb8dd7a57866734d85b5f Mon Sep 17 00:00:00 2001 From: Sirz Benjie <142067137+SirzBenjie@users.noreply.github.com> Date: Sun, 30 Mar 2025 13:51:15 -0500 Subject: [PATCH] Don't ignore image files for tests --- .github/workflows/tests.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 61446a632dc..ccc8604ff7e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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]