From 722b7ec34e839334baaa6bbf139e8687886270b9 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Sun, 17 Jul 2022 20:45:28 +0200 Subject: [PATCH] ci: switch alpine-tools image --- .drone.jsonnet | 3 +-- .drone.yml | 5 ++--- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 4c0ab4f..009c8b8 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -124,9 +124,8 @@ local PipelineDocs(deps=[],) = { }, { name: 'spellcheck', - image: 'node:lts-alpine', + image: 'thegeeklab/alpine-tools', commands: [ - 'npm install -g spellchecker-cli', "spellchecker --files 'README.md' 'CONTRIBUTING.md' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions", ], environment: { diff --git a/.drone.yml b/.drone.yml index 2847097..70a838f 100644 --- a/.drone.yml +++ b/.drone.yml @@ -101,9 +101,8 @@ steps: - markdownlint 'README.md' 'CONTRIBUTING.md' - name: spellcheck - image: node:lts-alpine + image: thegeeklab/alpine-tools commands: - - npm install -g spellchecker-cli - spellchecker --files 'README.md' 'CONTRIBUTING.md' -d .dictionary -p spell indefinite-article syntax-urls --no-suggestions environment: FORCE_COLOR: true @@ -157,6 +156,6 @@ depends_on: --- kind: signature -hmac: 0b88e084ab3ba9a23c6eb355fd62a050da4bc000c298e8df3f720598542a2c24 +hmac: 7eb6d6f1f25e9c59f7094444e273feef5346f6809ea21edc22974f1cb46908e3 ...