From 40b28185b9f407bc20488fe63e2fd72a93b14378 Mon Sep 17 00:00:00 2001 From: Jeffrey Warren Date: Sat, 25 Jul 2020 06:36:51 -0400 Subject: [PATCH] Try setting up gitpod for building for each PR to ease reviewing (#680) * Try setting up gitpod Building on example at https://github.com/publiclab/image-sequencer/pull/1668 * Update .gitpod.yml --- .gitpod.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 000000000..e44785029 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,17 @@ +tasks: + - init: npm i && npm run setup + command: npm run serve:dev +ports: + - port: 3000 + onOpen: open-preview + +github: + prebuilds: + main: true + branches: true + pullRequests: true + pullRequestsFromForks: true + addCheck: true + addComment: true + addBadge: false + addLabel: false