From 9fd6066851fd4ab46924c3fa7855e6a4e2d3e3a6 Mon Sep 17 00:00:00 2001 From: Pascal Perrenoud Date: Mon, 9 Jun 2025 00:05:37 +0200 Subject: [PATCH] Add CI --- .woodpecker/test.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .woodpecker/test.yml diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml new file mode 100644 index 0000000..0fc62ae --- /dev/null +++ b/.woodpecker/test.yml @@ -0,0 +1,17 @@ +when: + - path: + include: [ + 'src/**/*', + 'test/**/*', + 'index.ts' + ] + +steps: + test: + image: node + when: + - event: [pull_request, push, manual] + commands: + - npm install + - npm run check + - npm run test