From a539f40f6b6c87cab70511701b5b65421c21ac85 Mon Sep 17 00:00:00 2001 From: thiloho <123883702+thiloho@users.noreply.github.com> Date: Sun, 1 Sep 2024 17:24:04 +0200 Subject: [PATCH] Install dependencies before running tests in action --- .github/workflows/playwright.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 204158d..1454cc9 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -19,4 +19,4 @@ jobs: - name: Run playwright tests run: | cd web-app - nix develop .#web --command bash -c "npm run test" + nix develop .#web --command bash -c "npm install && npm run test"