From 94f082e98dcc56ddfc48a8ca0a2193f4a83b978b Mon Sep 17 00:00:00 2001 From: "gitea_1-h.cc" Date: Thu, 10 Oct 2024 19:09:39 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=A0=E9=99=A4=20.github/workflows/playwrig?= =?UTF-8?q?ht.yml.off?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/playwright.yml.off | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/playwright.yml.off diff --git a/.github/workflows/playwright.yml.off b/.github/workflows/playwright.yml.off deleted file mode 100644 index 2731bbb..0000000 --- a/.github/workflows/playwright.yml.off +++ /dev/null @@ -1,28 +0,0 @@ -# https://vercel.com/guides/how-can-i-run-end-to-end-tests-after-my-vercel-preview-deployment -name: Playwright Tests -on: - push: - branches: [main, master] - pull_request: - branches: [main, master] -jobs: - test: - timeout-minutes: 60 - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: lts/* - - name: Install dependencies - run: npm install -g pnpm && pnpm install - - name: Install Playwright Browsers - run: pnpm exec playwright install --with-deps - - name: Run Playwright tests - run: pnpm exec playwright test - # - uses: actions/upload-artifact@v4 - # if: ${{ !cancelled() }} - # with: - # name: playwright-report - # path: playwright-report/ - # retention-days: 30