From 2eaa309cfd8e1c3e7e8fdee136aa45c99c86592d Mon Sep 17 00:00:00 2001 From: Robert Brunhage Date: Sat, 11 May 2024 15:27:48 +0200 Subject: [PATCH] fix: missing install step --- .github/workflows/deploy.yaml | 1 + Makefile | 2 ++ 2 files changed, 3 insertions(+) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 3318a15..dc3c1c2 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -19,6 +19,7 @@ jobs: with: node-version: '20.x' registry-url: 'https://registry.npmjs.org' + - run: make install - run: make build - run: make publish env: diff --git a/Makefile b/Makefile index 90f48ab..0c2f2be 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,7 @@ list: @grep '^[^#[:space:]].*:' Makefile +install: + pnpm install build: npm run build watch: