From a60b17f220b36b25d7441049a664f5a013b26c46 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 17 Jul 2022 20:41:49 +0200 Subject: [PATCH] ci: switch alpine-tools image --- .drone.jsonnet | 6 ++---- .drone.yml | 8 +++----- 2 files changed, 5 insertions(+), 9 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index e1af9fc..3a4ece6 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -32,9 +32,8 @@ local PipelineDocs = { }, { name: 'spellcheck', - image: 'node:lts-alpine', + image: 'thegeeklab/alpine-tools', commands: [ - 'npm install -g spellchecker-cli', "spellchecker --files 'content/**/*.md' 'README.md' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions", ], environment: { @@ -68,9 +67,8 @@ local PipelineDocs = { }, { name: 'beautify', - image: 'node:lts-alpine', + image: 'thegeeklab/alpine-tools', commands: [ - 'npm install -g js-beautify', "html-beautify -r -f 'public/**/*.html'", ], environment: { diff --git a/.drone.yml b/.drone.yml index c4cd68d..82a50c5 100644 --- a/.drone.yml +++ b/.drone.yml @@ -26,9 +26,8 @@ steps: - markdownlint 'content/**/*.md' 'README.md' 'CONTRIBUTING.md' - name: spellcheck - image: node:lts-alpine + image: thegeeklab/alpine-tools commands: - - npm install -g spellchecker-cli - spellchecker --files 'content/**/*.md' 'README.md' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions environment: FORCE_COLOR: true @@ -52,9 +51,8 @@ steps: - hugo --panicOnWarning - name: beautify - image: node:lts-alpine + image: thegeeklab/alpine-tools commands: - - npm install -g js-beautify - html-beautify -r -f 'public/**/*.html' environment: FORCE_COLOR: true @@ -87,6 +85,6 @@ trigger: --- kind: signature -hmac: 21b711c2a7408288c869215d702e496ec5d887e7e817d23d12d21990f30a18d3 +hmac: 1a7ce6a2dd073018dd142fab1c7b691da70143b7a59a9925774ad2cfc8e9dd60 ...