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
|
2023-06-08 14:47:14 +00:00
|
|
|
|
2023-04-15 13:11:44 +00:00
|
|
|
check_formatting:
|
2023-05-31 10:00:05 +00:00
|
|
|
image: tmknom/prettier
|
2021-10-25 14:00:45 +00:00
|
|
|
commands:
|
2023-04-15 13:11:44 +00:00
|
|
|
- prettier -c src
|
2023-04-21 14:40:14 +00:00
|
|
|
|
2023-06-08 14:47:14 +00:00
|
|
|
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
|
2023-06-21 10:51:08 +00:00
|
|
|
- ./typos src
|
2023-06-08 14:47:14 +00:00
|
|
|
|
2023-03-24 20:45:52 +00:00
|
|
|
check_documentation_build:
|
2023-06-21 10:51:08 +00:00
|
|
|
image: alpine:3
|
2021-01-18 16:08:20 +00:00
|
|
|
commands:
|
2023-06-21 10:51:08 +00:00
|
|
|
- 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 .
|
2023-04-25 13:23:11 +00:00
|
|
|
|
|
|
|
dead_links:
|
|
|
|
image: becheran/mlc:latest
|
|
|
|
commands:
|
2023-06-01 20:29:59 +00:00
|
|
|
- mlc src/en --offline --ignore-links "*localhost*" --ignore-links "*127.0.0.1*" --ignore-links /api
|