lemmy-docs/.woodpecker.yml

40 lines
1.1 KiB
YAML
Raw Normal View History

2023-04-25 20:36:47 +00:00
# clone:
# git:
# image: woodpeckerci/plugin-git
# settings:
# recursive: true
# submodule_update_remote: true
2023-03-24 20:45:52 +00:00
pipeline:
2023-04-25 20:36:47 +00:00
prepare_repo:
image: alpine:3
commands:
- apk add git
#- git fetch --tags
- git submodule init
- git submodule update --recursive --remote
check_formatting:
image: tmknom/prettier
commands:
- prettier -c src
check_typos:
image: alpine:3
commands:
- wget -O typos.tar.gz https://github.com/crate-ci/typos/releases/download/v1.14.12/typos-v1.14.12-x86_64-unknown-linux-musl.tar.gz
- tar -xzf typos.tar.gz
- ./typos src
2023-03-24 20:45:52 +00:00
check_documentation_build:
image: alpine:3
2021-01-18 16:08:20 +00:00
commands:
- wget -O mdbook.tar.gz https://github.com/rust-lang/mdBook/releases/download/v0.4.30/mdbook-v0.4.30-x86_64-unknown-linux-musl.tar.gz
- tar -xzf mdbook.tar.gz
- ls -la mdbook
- ./mdbook build .
dead_links:
image: becheran/mlc:latest
commands:
- mlc src/en --offline --ignore-links "*localhost*" --ignore-links "*127.0.0.1*" --ignore-links /api