From c4da8fcc5a7c0186ca6ac85f446158bb9494b526 Mon Sep 17 00:00:00 2001 From: amalv <1252707+amalv@users.noreply.github.com> Date: Tue, 13 Feb 2024 23:55:48 +0100 Subject: [PATCH] fix: replace npm ci with npm install in e2e-tests job --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5c651ac..9d768b3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -59,7 +59,7 @@ jobs: with: node-version: 20 - name: Install dependencies - run: npm ci + run: npm install - name: Install Playwright Browsers run: npx playwright install --with-deps - name: Run Playwright tests