From 9253ab18761b2f6f37c0916c4c65e3b6cbf8e5ea Mon Sep 17 00:00:00 2001 From: Steve Faulkner Date: Wed, 10 Mar 2021 18:52:32 -0600 Subject: [PATCH] Run Emulator test only on master (#536) --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f04b413d3..f153fe012 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -94,7 +94,7 @@ jobs: path: dist/ endtoendemulator: name: "End To End Emulator Tests" - needs: [lint, format, compile, unittest] + if: github.ref == 'refs/heads/master' || contains(github.ref, 'hotfix/') || contains(github.ref, 'release/') runs-on: windows-latest steps: - uses: actions/checkout@v2