From d5f17b569b94185275dd2ef8da3c63b765f09a8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nicolas=20No=C3=A9?= Date: Wed, 5 Apr 2023 12:42:54 +0200 Subject: [PATCH] Attempt to fix GH actions --- .github/workflows/test-and-deploy.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 2bc0c06..7b1387f 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -16,8 +16,9 @@ jobs: uses: actions/setup-node@v3 with: node-version: 16 - - run: npm install --force - - run: npm run test:unit + run: | + npm install --force + npm run test:unit deploy-gh-pages: needs: run-unit-tests