diff --git a/.woodpecker.yml b/.woodpecker.yml index 6199967..dd11cb5 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -6,13 +6,19 @@ pipeline: - cd web && yarn install - cd web && yarn run build - test-backend: - image: chewingbever/fej-builder:latest - # Always update the builder image - pull: true + lint-frontend: + image: node:15-alpine3.13 commands: - - cargo test + - cd web && yarn run lint + + # Backend cicd jobs are disabled until we can figure out a way to cache stuff + # test-backend: + # image: chewingbever/fej-builder:latest + # # Always update the builder image + # pull: true + # commands: + # - cargo test # TODO build dev & rel image, deploy these images -branches: [ master, develop ] +# branches: [ master, develop ]