From aebc4b95c4b48653da178dbce29425e95fe62460 Mon Sep 17 00:00:00 2001 From: MBanucu Date: Tue, 6 Jan 2026 17:29:59 +0100 Subject: [PATCH] build: ensure npm install before build in publish workflow --- .github/workflows/publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 2278927..3acd291 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -30,7 +30,9 @@ jobs: experimental: true - name: Build - run: mise run build + run: | + npm install + mise run build - id: inputs uses: simenandre/setup-inputs@v1