From c4b45a9f269c6e765fa010d100d145c06b439251 Mon Sep 17 00:00:00 2001 From: Walmyr Date: Thu, 20 Jul 2023 23:57:59 +0200 Subject: [PATCH] Simplify github action workflow --- .github/workflows/ci.yml | 48 ---------------------------------------- 1 file changed, 48 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 37dc54d..835718b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,22 +44,6 @@ jobs: with: command: npm run test:api:cloud - - name: Upload screenshots - if: failure() - uses: actions/upload-artifact@v3 - with: - name: Screenshots - path: cypress/screenshots - retention-days: 1 - - - name: Upload videos - if: failure() - uses: actions/upload-artifact@v3 - with: - name: Videos - path: cypress/videos - retention-days: 1 - gui-project-cypress-tests: needs: static-analysis runs-on: ubuntu-latest @@ -81,22 +65,6 @@ jobs: with: command: npm run test:gui:project:cloud - - name: Upload screenshots - if: failure() - uses: actions/upload-artifact@v3 - with: - name: Screenshots - path: cypress/screenshots - retention-days: 1 - - - name: Upload videos - if: failure() - uses: actions/upload-artifact@v3 - with: - name: Videos - path: cypress/videos - retention-days: 1 - gui-all-but-project-cypress-tests: needs: static-analysis runs-on: ubuntu-latest @@ -117,19 +85,3 @@ jobs: CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }} with: command: npm run test:gui:all:but:project:cloud - - - name: Upload screenshots - if: failure() - uses: actions/upload-artifact@v3 - with: - name: Screenshots - path: cypress/screenshots - retention-days: 1 - - - name: Upload videos - if: failure() - uses: actions/upload-artifact@v3 - with: - name: Videos - path: cypress/videos - retention-days: 1