From e536db9b7e9fb38229c19ec2b245592b676989d2 Mon Sep 17 00:00:00 2001 From: rugk Date: Sat, 9 Jul 2022 17:04:28 +0200 Subject: [PATCH] style: run tests via npm script insread of custom command I.e. not call mocha directly but let the script defined in package.json do it's job. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 530be1cc..10e84b48 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -116,6 +116,6 @@ jobs: working-directory: js - name: Run unit tests - run: mocha + run: npm test working-directory: js