From ecba620e4299f5de2e2d2de87a94bee579bcb86c Mon Sep 17 00:00:00 2001 From: Gauthier Roebroeck Date: Wed, 25 Jun 2025 12:19:49 +0800 Subject: [PATCH] use npm ci in CI --- .github/workflows/tests.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 197f6a022..e1e37ebff 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -116,8 +116,10 @@ jobs: working-directory: next-ui run: npm run test:unit - name: test:storybook - working-directory: next-ui - run: npm run test:storybook + uses: nick-fields/retry@v3 + with: + command: npm run --prefix next-ui test:storybook + max_attempts: '3' - name: lint working-directory: next-ui run: npm run lint