ci: switch alpine-tools image

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

View File

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

View File

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