From e5703e0ef5f0ac381cf9e56471a968bbf597127b Mon Sep 17 00:00:00 2001 From: Dave Lockhart Date: Tue, 4 Jun 2024 10:02:55 -0400 Subject: [PATCH] fix: remove explicit playwright install --- .../test-unit/templates/static/.github/workflows/ci.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/generators/test-unit/templates/static/.github/workflows/ci.yml b/src/generators/test-unit/templates/static/.github/workflows/ci.yml index a3eb408..07216ae 100644 --- a/src/generators/test-unit/templates/static/.github/workflows/ci.yml +++ b/src/generators/test-unit/templates/static/.github/workflows/ci.yml @@ -11,10 +11,7 @@ jobs: with: node-version-file: .nvmrc - name: Install dependencies - run: | - npm install - npm install @web/test-runner-playwright --no-save - npx playwright install-deps + run: npm install - name: Lint (JavaScript) run: npm run lint:eslint - name: Lint (CSS)