From 1506df3b94456a57d9e7e68ed955a74c0919b8c9 Mon Sep 17 00:00:00 2001 From: Chloe Kudryavtsev Date: Mon, 18 Jul 2022 06:45:03 -0400 Subject: [PATCH] chore(ci): add a dedicated build pipeline --- .woodpecker/build.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .woodpecker/build.yml diff --git a/.woodpecker/build.yml b/.woodpecker/build.yml new file mode 100644 index 000000000..a99684cc9 --- /dev/null +++ b/.woodpecker/build.yml @@ -0,0 +1,24 @@ +clone: + git: + image: woodpeckerci/plugin-git + settings: + depth: 1 # CI does not need commit history + recursive: true + +pipeline: + install: + when: + event: + - push + - pull_request + image: node:18.6.0 + commands: + - yarn install + build: + when: + event: + - push + - pull_request + image: node:18.6.0 + commands: + - yarn build