Add a spellchecker
This commit is contained in:
parent
1fab42293d
commit
75b958bc6e
35
.woodpecker/build.yaml
Normal file
35
.woodpecker/build.yaml
Normal file
@ -0,0 +1,35 @@
|
||||
---
|
||||
when:
|
||||
event: push
|
||||
branch: main
|
||||
steps:
|
||||
build:
|
||||
name: Build the CV
|
||||
image: node
|
||||
environment:
|
||||
OUTPUT: /tmp/out
|
||||
commands:
|
||||
- apt-get update
|
||||
- |-
|
||||
apt-get install -y libx11-xcb1 libxcomposite1 libasound2 \
|
||||
libatk1.0-0 libatk-bridge2.0-0 libcairo2 libcups2 libdbus-1-3 \
|
||||
libexpat1 libfontconfig1 libgbm1 libgcc1 libglib2.0-0 libgtk-3-0 \
|
||||
libnspr4 libpango-1.0-0 libpangocairo-1.0-0 libstdc++6 libx11-6 \
|
||||
libx11-xcb1 libxcb1 libxcomposite1 libxcursor1 libxdamage1 \
|
||||
libxext6 libxfixes3 libxi6 libxrandr2 libxrender1 libxss1 libxtst6 \
|
||||
libnss3-dev
|
||||
- npm install -g md-to-pdf
|
||||
- |-
|
||||
md-to-pdf index.md --launch-options '{ "args": ["--no-sandbox"] }'
|
||||
- mkdir $CI_WORKSPACE/cv
|
||||
- mv index.pdf $CI_WORKSPACE/cv/n.rodionov.pdf
|
||||
upload:
|
||||
name: Upload the CV
|
||||
image: rclone/rclone:latest
|
||||
secrets:
|
||||
- rclone_config_content
|
||||
environment:
|
||||
RCLONE_CONFIG: /tmp/rclone.conf
|
||||
commands:
|
||||
- echo "$RCLONE_CONFIG_CONTENT" > $RCLONE_CONFIG
|
||||
- rclone copy -P $CI_WORKSPACE/cv badhouseplants-minio:/public-download
|
13
.woodpecker/spellcheck.yaml
Normal file
13
.woodpecker/spellcheck.yaml
Normal file
@ -0,0 +1,13 @@
|
||||
---
|
||||
when:
|
||||
event: push
|
||||
branch:
|
||||
exclude:
|
||||
- main
|
||||
steps:
|
||||
spellcheck:
|
||||
name: Run the spellchecker
|
||||
image: node
|
||||
commands:
|
||||
- npm i markdown-spellcheck -g
|
||||
- mdspell "*.md" -n -r
|
Loading…
Reference in New Issue
Block a user