16 lines
310 B
YAML
16 lines
310 B
YAML
when:
|
|
- event: push
|
|
branch: main
|
|
|
|
steps:
|
|
- name: test
|
|
image: golang:1.24
|
|
commands:
|
|
- go test ./...
|
|
- name: build tailwind css
|
|
image: codeberg.org/woodpecker-plugins/node-pm
|
|
commands:
|
|
- cd layout
|
|
- npm install
|
|
- npx @tailwindcss/cli -i style.css -o output.css
|
|
|