From 5e768961ff872e6069b3af6b52abb74f813fe74a Mon Sep 17 00:00:00 2001 From: Dan Gowans Date: Tue, 18 Oct 2022 14:57:37 -0400 Subject: [PATCH] try separate cypress verify step --- .github/workflows/coverage.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 66e22c44..66bca4cb 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -23,11 +23,14 @@ jobs: run: cp ./data/config.testing.js ./data/config.js - name: Initialize Database run: npm run init:cemetery:test + - name: Verify Cypress + run: cypress verify + env: + CYPRESS_VERIFY_TIMEOUT: 600000 - name: Run Coverage Testing run: c8 --reporter=lcov --reporter=text --reporter=text-summary mocha --timeout 10000 --exit env: CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} - CYPRESS_VERIFY_TIMEOUT: 600000 - name: Code Climate if: ${{ github.event_name != 'pull_request' && env.CC_TEST_REPORTER_ID != '' }} run: |