62 lines
1.5 KiB
YAML
62 lines
1.5 KiB
YAML
|
---
|
||
|
when:
|
||
|
- event: [pull_request, tag]
|
||
|
- event: [push, manual]
|
||
|
branch:
|
||
|
- ${CI_REPO_DEFAULT_BRANCH}
|
||
|
|
||
|
steps:
|
||
|
markdownlint:
|
||
|
image: quay.io/thegeeklab/markdownlint-cli
|
||
|
commands:
|
||
|
- markdownlint 'README.md'
|
||
|
|
||
|
spellcheck:
|
||
|
image: quay.io/thegeeklab/alpine-tools
|
||
|
commands:
|
||
|
- spellchecker --files '_docs/**/*.md' 'README.md' -d .dictionary -p spell indefinite-article syntax-urls
|
||
|
environment:
|
||
|
FORCE_COLOR: "true"
|
||
|
NPM_CONFIG_LOGLEVEL: "error"
|
||
|
|
||
|
link-validation:
|
||
|
image: docker.io/lycheeverse/lychee
|
||
|
group: test
|
||
|
commands:
|
||
|
- lychee --no-progress --format detailed README.md
|
||
|
|
||
|
pushrm-dockerhub:
|
||
|
image: docker.io/chko/docker-pushrm:1
|
||
|
secrets:
|
||
|
- source: docker_password
|
||
|
target: DOCKER_PASS
|
||
|
- source: docker_username
|
||
|
target: DOCKER_USER
|
||
|
environment:
|
||
|
PUSHRM_FILE: README.md
|
||
|
PUSHRM_SHORT: Custom image for markdownlint-cli
|
||
|
PUSHRM_TARGET: thegeeklab/${CI_REPO_NAME}
|
||
|
when:
|
||
|
- event: [push, manual]
|
||
|
branch:
|
||
|
- ${CI_REPO_DEFAULT_BRANCH}
|
||
|
status: [success]
|
||
|
|
||
|
pushrm-quay:
|
||
|
image: docker.io/chko/docker-pushrm:1
|
||
|
secrets:
|
||
|
- source: quay_token
|
||
|
target: APIKEY__QUAY_IO
|
||
|
environment:
|
||
|
PUSHRM_FILE: README.md
|
||
|
PUSHRM_TARGET: quay.io/thegeeklab/${CI_REPO_NAME}
|
||
|
when:
|
||
|
- event: [push, manual]
|
||
|
branch:
|
||
|
- ${CI_REPO_DEFAULT_BRANCH}
|
||
|
status: [success]
|
||
|
|
||
|
depends_on:
|
||
|
- build-package
|
||
|
- build-container
|