From abe6a938de39f56dbc192eb8ab4bf8e372b9c3d6 Mon Sep 17 00:00:00 2001 From: Jef Roosens Date: Thu, 30 Dec 2021 08:44:49 +0100 Subject: [PATCH] Removed typo; split into test group --- .woodpecker.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 637a45f..00a13e1 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -3,13 +3,17 @@ pipeline: image: 'node:17.3.0' commands: - yarn install - # - yarn run lint - test: + # This step makes sure the project properly builds + build: image: 'node:17.3.0' - comands: - # Lint the code - # - yarn run lint - # Make sure the project can be built + group: test + commands: - yarn run build + lint: + image: 'node:17.3.0' + group: test + commands: + - yarn run lint +