From b80c9bce83176ffe63efde8ccccf4680ad16e057 Mon Sep 17 00:00:00 2001 From: dragongoose Date: Thu, 30 Nov 2023 19:54:05 -0500 Subject: [PATCH] I highly dislike working with CI. --- .woodpecker.yml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 88d4345..f295023 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,17 +1,19 @@ steps: - lint: - image: docker.io/node:16 - commands: - - git clone --recurse-submodules -j8 https://codeberg.org/${CI_REPO_OWNER}/safetwitch - - npm i - - npm run lint - when: - event: push - branch: master +# lint: +# image: docker.io/node:16 +# commands: +# - git clone --recurse-submodules -j8 https://codeberg.org/${CI_REPO_OWNER}/safetwitch +# - npm i +# - npm run lint +# when: +# event: push +# branch: master build: image: docker.io/node:16 commands: + - git clone --recurse-submodules -j8 https://codeberg.org/${CI_REPO_OWNER}/safetwitch + - npm run i - npm run build when: event: push