From 83d0c3b079706c3689d2adda2eaa7d94d241319e Mon Sep 17 00:00:00 2001 From: Jonathan MASSUCHETTI Date: Mon, 23 Sep 2024 14:22:08 +0200 Subject: [PATCH] ci: use npm unambiguous syntax --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 52d00b0..b095e48 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,11 +22,11 @@ jobs: uses: bahmutov/npm-install@v1 - name: Tests - run: npm test:ci + run: npm run test:ci - name: Create Release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }} run: | - npm release + npm run release