From 8e9e0bc9faf0b5af186ab63606d95679fd56d972 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Wed, 30 Oct 2024 21:33:29 +0100 Subject: [PATCH] ci: replace deprecated group syntax --- .woodpecker/test.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml index c1efa54..2146996 100644 --- a/.woodpecker/test.yml +++ b/.woodpecker/test.yml @@ -16,6 +16,7 @@ steps: - name: assets image: docker.io/library/node:lts + depends_on: [eslint] commands: - npm install --quiet --no-progress - npm run build @@ -24,13 +25,14 @@ steps: - name: testbuild image: quay.io/thegeeklab/hugo:0.136.5 + depends_on: [assets] commands: - mkdir -p exampleSite/themes/ && ln -s $(pwd)/ exampleSite/themes/${CI_REPO_NAME} - hugo --panicOnWarning -s exampleSite/ -b http://localhost:8000/ - name: html-validation image: docker.io/library/node:lts - group: test + depends_on: [testbuild] commands: - npm install --quiet --no-progress - npm run lint:html @@ -39,13 +41,13 @@ steps: - name: link-validation image: docker.io/lycheeverse/lychee - group: test + depends_on: [testbuild] commands: - lychee --no-progress --format detailed exampleSite/content/ README.md - name: page-validation image: quay.io/thegeeklab/lhci:0.14 - group: test + depends_on: [testbuild] commands: - lhci autorun environment: