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]