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