From 92a08a17afbd033b76b928de15392585f83a3766 Mon Sep 17 00:00:00 2001 From: Jef Roosens Date: Sat, 1 May 2021 21:29:17 +0200 Subject: [PATCH] Hopefully fixed dumb ci mistake --- .woodpecker.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index dd11cb5..9e9f12c 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -3,13 +3,15 @@ pipeline: image: node:15-alpine3.13 pull: true commands: - - cd web && yarn install - - cd web && yarn run build + - cd web + - yarn install + - yarn run build lint-frontend: image: node:15-alpine3.13 commands: - - cd web && yarn run lint + - cd web + - yarn run lint # Backend cicd jobs are disabled until we can figure out a way to cache stuff # test-backend: