diff --git a/.drone.jsonnet b/.drone.jsonnet index 13e40d0..6db51f6 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -329,9 +329,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' 'CONTRIBUTING.md' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions", ], environment: { @@ -365,9 +364,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 32e5801..1a067d3 100644 --- a/.drone.yml +++ b/.drone.yml @@ -490,9 +490,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' 'CONTRIBUTING.md' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions environment: FORCE_COLOR: true @@ -516,9 +515,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 @@ -649,6 +647,6 @@ depends_on: --- kind: signature -hmac: ef80b1da46ce2d43b50ed1f00c19ff0fc549289d127dcc45270e88e15e84de6b +hmac: add87029392e8edc5500bf1753c41a2812adbaef5ab45e1da01e62cc258e7de3 ...