From 245f8d4b050b1611c9945094aee8a7c799f3e8b2 Mon Sep 17 00:00:00 2001 From: Lipis Date: Mon, 6 Nov 2023 23:18:22 +0200 Subject: [PATCH] Update npm-publish.yml --- .github/workflows/npm-publish.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 29c4a630..730bb643 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -15,8 +15,8 @@ jobs: - uses: actions/setup-node@v3 with: node-version: 18 - - run: npm ci - - run: npm test + - run: yarn + - run: yarn test publish-npm: needs: build @@ -27,7 +27,7 @@ jobs: with: node-version: 18 registry-url: https://registry.npmjs.org/ - - run: npm ci + - run: yarn - run: npm publish env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}