From 2dda1afc7c299f24ee1f64538c3c2e260bd9063c Mon Sep 17 00:00:00 2001 From: Dessalines Date: Wed, 20 Jan 2021 10:12:29 -0500 Subject: [PATCH] Adding a drone.yml. --- .drone.yml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..427b56f --- /dev/null +++ b/.drone.yml @@ -0,0 +1,39 @@ +--- +kind: pipeline +name: amd64 + +platform: + os: linux + arch: amd64 + +steps: + + - name: yarn + image: node:14-alpine + commands: + - yarn + + - name: yarn lint + image: node:14-alpine + commands: + - yarn lint + +--- +kind: pipeline +name: arm64 + +platform: + os: linux + arch: arm64 + +steps: + + - name: yarn + image: node:14-alpine + commands: + - yarn + + - name: yarn lint + image: node:14-alpine + commands: + - yarn lint