From a39a41dafdb5b8dc3d784f81099a83b80a53a913 Mon Sep 17 00:00:00 2001 From: Thorn Walli Date: Sun, 22 Sep 2024 18:20:22 +0200 Subject: [PATCH] ci(clean): removed playwright --- .github/workflows/main.yml | 3 --- .github/workflows/test.yml | 5 ----- 2 files changed, 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ec4350d..21bd788 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,9 +38,6 @@ jobs: if: steps.cache.outputs.cache-hit != 'true' run: npm ci - - name: Install Playwright - run: npx playwright install --with-deps - - name: Lint run: npm run lint diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a5e1efe..234f54a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,17 +33,12 @@ jobs: with: path: | node_modules - ~/.cache/ms-playwright/ - ~\AppData\Local\ms-playwright\ key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/package-lock.json')) }} - name: Install Dependencies if: steps.cache.outputs.cache-hit != 'true' run: npm ci - - name: Install Playwright - run: npx playwright install --with-deps - - name: Lint run: npm run lint