From c9f5c4d29f6860ec7bc2729833ec1af16e1627fb Mon Sep 17 00:00:00 2001 From: Dmitry Kruchinin <33020454+dvkruchinin@users.noreply.github.com> Date: Sat, 5 Jun 2021 07:06:52 +0300 Subject: [PATCH] Remove headless for canvas-3d develop branch (#3274) --- .github/workflows/main.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 36ac4797..8c049cbf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -165,7 +165,11 @@ jobs: cd ./tests npm ci if [[ ${{ github.ref }} == 'refs/heads/develop' ]]; then - npx cypress run --headless --browser chrome --spec 'cypress/integration/${{ matrix.specs }}/**/*.js' + if [[ ${{ matrix.specs }} != 'canvas3d_functionality' ]]; then + npx cypress run --headless --browser chrome --spec 'cypress/integration/${{ matrix.specs }}/**/*.js' + else + npx cypress run --browser chrome --spec 'cypress/integration/${{ matrix.specs }}/**/*.js' + fi mv ./.nyc_output/out.json ./.nyc_output/out_${{ matrix.specs }}.json else if [[ ${{ matrix.specs }} != 'canvas3d_functionality' ]]; then