ci: switch alpine-tools image

This commit is contained in:
Robert Kaussow 2022-07-17 20:54:33 +02:00
parent b396fb40fe
commit ea2e33993f
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
2 changed files with 5 additions and 9 deletions

View File

@ -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: {

View File

@ -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
...