From 52235eb65bfcf3fde19db6cf76fcbad13e6fb4e9 Mon Sep 17 00:00:00 2001 From: Derek Date: Sat, 16 Dec 2023 22:11:08 -0500 Subject: [PATCH] feat(lab): add UI tests --- .github/workflows/ui_tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ui_tests.yml b/.github/workflows/ui_tests.yml index b5c5e5b265..e608f2e080 100644 --- a/.github/workflows/ui_tests.yml +++ b/.github/workflows/ui_tests.yml @@ -38,9 +38,11 @@ jobs: cache: 'npm' cache-dependency-path: 'package-lock.json' - name: install - run: npm ci + working-directory: ./apps/laboratory/ + run: npm install --force - name: Install Playwright Browsers + working-directory: ./apps/laboratory/ run: npx playwright install --with-deps chromium firefox - name: Run Playwright tests