From ac71e6aba2138c0c8a31e1d6bdf679e62d523727 Mon Sep 17 00:00:00 2001 From: Ayo Ayco Date: Thu, 19 Dec 2024 23:41:58 +0100 Subject: [PATCH] chore: unify pre-commit and ci test scripts --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c0f9f37..d47c1ef 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -23,8 +23,8 @@ jobs: - name: Install deps run: | - npm install --ignore-scripts && npm install vitest + npm install --ignore-scripts - name: Run Vitest - run: npx vitest run . + run: npm run test:cli run . continue-on-error: false