From 78dc0cb5e529db44b00e35d78ed0c6bc2fc92614 Mon Sep 17 00:00:00 2001 From: gabriel-logan Date: Thu, 2 May 2024 15:08:16 -0300 Subject: [PATCH] ci: 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 c224a19..9405757 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -25,8 +25,8 @@ jobs: - name: Cd to directory working-directory: ./packages/typescript run: | - yarn ci - yarn test + npm ci + npm test publish-npm: needs: build @@ -37,7 +37,7 @@ jobs: with: node-version: 16 registry-url: https://registry.npmjs.org/ - - run: yarn ci + - run: npm ci - run: npm publish env: NODE_AUTH_TOKEN: ${{secrets.npm_token}}