From bd06aa707454274670ae33a967ed6f7476ab81de Mon Sep 17 00:00:00 2001 From: David Luna Date: Wed, 14 Aug 2024 17:10:56 +0200 Subject: [PATCH] chore: fix npm command in workflows --- .github/workflows/publish.yml | 2 +- .github/workflows/test.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 11a961d..360b560 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,7 +17,7 @@ jobs: run: | npm install npm run lint - npm test:ci + npm run test:ci - name: Coveralls uses: coverallsapp/github-action@master with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index a96c732..d9c7d28 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,4 +1,4 @@ -name: build +name: test on: workflow_dispatch: push: @@ -16,7 +16,7 @@ jobs: run: | npm install npm run lint - npm test:ci + npm run test:ci - name: Coveralls uses: coverallsapp/github-action@master with: