From 4a4d07fd26a0fa1fad516a1920f62907985a870d Mon Sep 17 00:00:00 2001 From: Ethan Lane Date: Mon, 22 Jan 2024 18:22:58 +0000 Subject: [PATCH] Testing adding basic workflow --- .woodpecker/integration.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 .woodpecker/integration.yml diff --git a/.woodpecker/integration.yml b/.woodpecker/integration.yml new file mode 100644 index 0000000..573b8c6 --- /dev/null +++ b/.woodpecker/integration.yml @@ -0,0 +1,16 @@ +steps: + build: + image: node + commands: + - npm ci + - npm run build + when: + event: push + branch: [ hotfix/*, feature/*, renovate/* ] + lint: + image: node + commands: + - npm run lint + when: + event: push + branch: [ hotfix/*, renovate/* ] \ No newline at end of file