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