diff --git a/.drone.jsonnet b/.drone.jsonnet index 2818f84..42de250 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -310,9 +310,8 @@ local PipelineDocs = { }, { name: 'spellcheck', - image: 'node:lts-alpine', + image: 'thegeeklab/alpine-tools', commands: [ - 'npm install -g spellchecker-cli', "spellchecker --files 'docs/content/**/*.md' 'README.md' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions", ], environment: { @@ -346,9 +345,8 @@ local PipelineDocs = { }, { name: 'beautify', - image: 'node:lts-alpine', + image: 'thegeeklab/alpine-tools', commands: [ - 'npm install -g js-beautify', "html-beautify -r -f 'docs/public/**/*.html'", ], environment: { diff --git a/.drone.yml b/.drone.yml index e97d83d..b4f2531 100644 --- a/.drone.yml +++ b/.drone.yml @@ -471,9 +471,8 @@ steps: - markdownlint 'docs/content/**/*.md' 'README.md' 'CONTRIBUTING.md' - name: spellcheck - image: node:lts-alpine + image: thegeeklab/alpine-tools commands: - - npm install -g spellchecker-cli - spellchecker --files 'docs/content/**/*.md' 'README.md' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions environment: FORCE_COLOR: true @@ -497,9 +496,8 @@ steps: - hugo --panicOnWarning -s docs/ - name: beautify - image: node:lts-alpine + image: thegeeklab/alpine-tools commands: - - npm install -g js-beautify - html-beautify -r -f 'docs/public/**/*.html' environment: FORCE_COLOR: true @@ -630,6 +628,6 @@ depends_on: --- kind: signature -hmac: b02a51b361ba9df7a15bef3e4b05011a294573778ea2ffc0ad6886c54d98a2fc +hmac: 1787b8f3f035020cda542c07c76e81622e692e8801da4a9c7171a436a8addca5 ...