mirror of
https://github.com/thegeeklab/url-parser.git
synced 2024-11-13 00:30:41 +00:00
23 lines
523 B
YAML
23 lines
523 B
YAML
---
|
|
when:
|
|
- event: [pull_request, tag]
|
|
- event: [push, manual]
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
steps:
|
|
- name: markdownlint
|
|
image: quay.io/thegeeklab/markdownlint-cli
|
|
commands:
|
|
- markdownlint 'README.md' 'CONTRIBUTING.md'
|
|
|
|
- name: spellcheck
|
|
image: quay.io/thegeeklab/alpine-tools
|
|
commands:
|
|
- spellchecker --files 'README.md' 'CONTRIBUTING.md' -d .dictionary -p spell indefinite-article syntax-urls
|
|
environment:
|
|
FORCE_COLOR: "true"
|
|
|
|
depends_on:
|
|
- build-package
|