From 67b1a87d2e5193bf574a1cacb6d1a1f63b84de92 Mon Sep 17 00:00:00 2001 From: Harrison Deng Date: Mon, 21 Oct 2024 04:47:51 +0000 Subject: [PATCH] Separated installation and build steps --- .woodpecker/build.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.woodpecker/build.yaml b/.woodpecker/build.yaml index 7e6e0df..cede275 100644 --- a/.woodpecker/build.yaml +++ b/.woodpecker/build.yaml @@ -1,6 +1,9 @@ steps: - - name: build + - name: install image: node:20 commands: - npm install + - name: build + image: node:20 + commands: - npm run build \ No newline at end of file