From 3e013dcac62bf209c07202681f6a76a32c9a3bcc Mon Sep 17 00:00:00 2001 From: Levin Keller Date: Wed, 17 Jul 2024 16:44:51 +0200 Subject: [PATCH] fix: publication pipeline broken --- .github/workflows/checks.yml | 1 - package.json | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml index 5553541..d8b1244 100644 --- a/.github/workflows/checks.yml +++ b/.github/workflows/checks.yml @@ -17,7 +17,6 @@ jobs: with: node-version: 20 - run: yarn - - run: yarn build - run: yarn test build: runs-on: ubuntu-latest diff --git a/package.json b/package.json index 7a5f8d1..55b63c3 100644 --- a/package.json +++ b/package.json @@ -5,7 +5,7 @@ "exports": "./build/index.js", "scripts": { "build": "tsc -p tsconfig.build.json", - "test": "vitest", + "test": "yarn build && vitest", "clean": "rm -rf build", "prepack": "yarn clean && yarn build", "postpack": "yarn clean",