From e84f67185bfd4ca45d804e8b0664bd6c2077df9d Mon Sep 17 00:00:00 2001 From: Nick Slowinski Date: Sat, 9 Sep 2023 17:15:53 +0200 Subject: [PATCH] Adding new drone config --- drone.yml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 drone.yml diff --git a/drone.yml b/drone.yml new file mode 100644 index 0000000..34f726e --- /dev/null +++ b/drone.yml @@ -0,0 +1,18 @@ +name: test +kind: pipeline +type: docker + +platform: + os: linux + arch: amd64 + +steps: +- name: build + image: registry.access.redhat.com/ubi9/nodejs-18-minimal:1-67 + commands: + - npm install --only=production + - npm run build +trigger: + event: + - push + - pull_request \ No newline at end of file