From 8704263d8c079232703e7b79a279a5e03f37a458 Mon Sep 17 00:00:00 2001 From: krmax44 Date: Wed, 29 Jan 2025 15:37:49 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=91=B7=20re-enable=20testing=20in=20ci?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/deploy.yaml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 0d88747..816067a 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -30,8 +30,8 @@ jobs: cache: pnpm - name: Install dependencies run: pnpm install - # - name: Install Playwright Browsers - # run: pnpm exec playwright install --with-deps + - name: Install Playwright Browsers + run: pnpm exec playwright install --with-deps - name: Write secret files run: | echo "$ENV_FILE" > .env @@ -45,14 +45,14 @@ jobs: run: sed -i 's/@reference "\.\.\/assets\/style.css";//g' ./dist/_astro/*.css - name: Delete secrets run: rm .env service-account.json - # - name: Run Playwright tests - # run: pnpm run test - # - uses: actions/upload-artifact@v4 - # if: ${{ !cancelled() }} - # with: - # name: playwright-report - # path: playwright-report/ - # retention-days: 7 + - name: Run tests + run: pnpm run test + - uses: actions/upload-artifact@v4 + if: ${{ !cancelled() }} + with: + name: playwright-report + path: playwright-report/ + retention-days: 7 - name: Add CNAME run: echo real-o-mat.de > dist/CNAME - name: Setup Pages