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.
pull/955/head
rugk 2022-07-09 17:04:28 +02:00 committed by GitHub
parent 79fd33d21f
commit e536db9b7e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -116,6 +116,6 @@ jobs:
working-directory: js
- name: Run unit tests
run: mocha
run: npm test
working-directory: js