From 96c9ea8de74d88cf0e262e0d3ca60c467d2480bf Mon Sep 17 00:00:00 2001 From: realaravinth Date: Tue, 16 Aug 2022 16:44:15 +0530 Subject: [PATCH] fix: use node 14, same as github actions config --- .woodpecker.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 680207e8..1e55b207 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,6 +1,6 @@ pipeline: buildfrontend: - image: node + image: node:14 commands: - yarn install - yarn test @@ -9,7 +9,7 @@ pipeline: - yarn build deploy: - image: node + image: node:14 when: event: push branch: master @@ -18,6 +18,6 @@ pipeline: secrets: [gitea_write_deploy_key, librepages_deploy_secret] lint-frontend: - image: node + image: node:14 commands: - yarn lint-ci