From eecf41eb194cc3e6f2fa5ab9c9dc05b413096bb7 Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Wed, 25 Jun 2025 12:11:02 +0800 Subject: [PATCH] run storybook tests in CI --- .github/workflows/tests.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bf0e6b415..116db4ef8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -108,9 +108,10 @@ jobs: cache-dependency-path: next-ui/package-lock.json - name: npm install working-directory: next-ui - run: > - npm install - npx playwright install --with-deps + run: npm install + - name: npx playwright install --with-deps + working-directory: next-ui + run: npx playwright install --with-deps - name: test:unit working-directory: next-ui run: npm run test:unit