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