From c439c9645dfc31484ab46a7b29498e8a15d37368 Mon Sep 17 00:00:00 2001 From: hdbg Date: Thu, 19 Mar 2026 00:37:17 +0100 Subject: [PATCH] ci(useragent): added `analyze` step --- .woodpecker/useragent-analyze.yaml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 .woodpecker/useragent-analyze.yaml diff --git a/.woodpecker/useragent-analyze.yaml b/.woodpecker/useragent-analyze.yaml new file mode 100644 index 0000000..73230a2 --- /dev/null +++ b/.woodpecker/useragent-analyze.yaml @@ -0,0 +1,18 @@ +when: + - event: pull_request + path: + include: ['.woodpecker/useragent-*.yaml', 'useragent/**'] + - event: push + branch: main + path: + include: ['.woodpecker/useragent-*.yaml', 'useragent/**'] + +steps: + - name: analyze + image: jdxcode/mise:latest + commands: + - mise install flutter + - mise install protoc + # Reruns codegen to catch protocol drift + - mise codegen + - cd useragent/ && flutter analyze \ No newline at end of file