From fc429b249cf4ee8a2c1dc06c111a7c3b2fffaf08 Mon Sep 17 00:00:00 2001 From: Gleb Bahmutov Date: Tue, 15 Sep 2020 08:37:09 -0400 Subject: [PATCH] split test commands --- .github/workflows/ci.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ede70aa..884b783 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,14 +7,17 @@ jobs: - name: Checkout ๐Ÿ›Ž uses: actions/checkout@v2 - - name: Cypress run ๐Ÿงช + - name: Check --passing ๐Ÿงช uses: cypress-io/github-action@v2 with: # run Cypress via this script # and verify that exactly 3 tests are passing - command: | - node . run --passing 3 - node . run --min-passing 1 + command: node . run --passing 3 + + - name: Check --min-passing ๐Ÿงช + uses: cypress-io/github-action@v2 + with: + command: node . run --min-passing 1 - name: Semantic Release ๐Ÿš€ uses: cycjimmy/semantic-release-action@v2