From 6d6f357b7b384e13b29ca14c63805b9c4e5e69ef Mon Sep 17 00:00:00 2001 From: BowTiedRadone Date: Fri, 17 Jan 2025 10:59:10 +0200 Subject: [PATCH] Add `build` step to the npm publish workflow --- .github/workflows/npm-publish-release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/npm-publish-release.yml b/.github/workflows/npm-publish-release.yml index 48c2a6b1..c59e4228 100644 --- a/.github/workflows/npm-publish-release.yml +++ b/.github/workflows/npm-publish-release.yml @@ -13,6 +13,7 @@ jobs: registry-url: "https://registry.npmjs.org" - run: npm ci - run: npm test + - run: npm run build - run: npm publish --access public env: NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}