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