Adding a drone.yml.
This commit is contained in:
parent
52fbba26e5
commit
2dda1afc7c
1 changed files with 39 additions and 0 deletions
39
.drone.yml
Normal file
39
.drone.yml
Normal file
|
@ -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
|
Loading…
Reference in a new issue