From 6df6ff93a494188b37557b889a6bb84208f8743c Mon Sep 17 00:00:00 2001 From: April Hall Date: Sun, 2 Mar 2025 00:40:12 -0500 Subject: [PATCH] ci: Adjust testing conditions Only run tests when merging or pushing to main --- .github/workflows/playwright.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 0b8320e..4bad075 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -1,5 +1,9 @@ name: Tests -on: [push, pull_request] +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] jobs: test: