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