lemmy-docs/.woodpecker.yml
Santiago sacuna 379c208ea7
Restore update-includes.sh script in CI (#259)
* Restore update-includes.sh script in CI

It was removed in 0dc13b4ea1 and since
then the CI build throws a bunch of errors but still exits with status
code 0.

* Add missing dependencies for update-includes.sh script

---------

Co-authored-by: ziflit <ziflit@no-reply.github.com>
2023-07-26 13:06:00 +02:00

41 lines
1.1 KiB
YAML

# clone:
# git:
# image: woodpeckerci/plugin-git
# settings:
# recursive: true
# submodule_update_remote: true
pipeline:
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
check_documentation_build:
image: alpine:3
commands:
- apk add bash curl git
- 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
- ./update-includes.sh
- ./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