2022-08-13 03:10:11 +02:00
|
|
|
variables:
|
|
|
|
- &when_path
|
|
|
|
- ".woodpecker/lint.yml"
|
|
|
|
- "**/*.lua"
|
|
|
|
|
2022-08-12 19:10:51 +02:00
|
|
|
pipeline:
|
|
|
|
lint:
|
|
|
|
image: ghcr.io/lunarmodules/luacheck:v0.26.1
|
|
|
|
group: lint
|
|
|
|
commands:
|
|
|
|
- apk add just
|
|
|
|
- just check-lua
|
2022-08-12 19:45:52 +02:00
|
|
|
when:
|
2022-08-13 03:10:11 +02:00
|
|
|
path: *when_path
|
2022-08-12 19:45:52 +02:00
|
|
|
|
2022-08-12 19:10:51 +02:00
|
|
|
style:
|
|
|
|
image: alpine:edge # Stylua is only available on edge repository for now
|
|
|
|
group: lint
|
|
|
|
commands:
|
|
|
|
- apk add just stylua
|
|
|
|
- just check-format
|
2022-08-12 19:45:52 +02:00
|
|
|
when:
|
2022-08-13 03:10:11 +02:00
|
|
|
path: *when_path
|