added dronefile #1
29
.drone.yml
Normal file
29
.drone.yml
Normal file
@ -0,0 +1,29 @@
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: install
|
||||
image: node:18
|
||||
commands:
|
||||
- npm install
|
||||
|
||||
- name: test
|
||||
image: node:18
|
||||
commands:
|
||||
- npm test -- --passWithNoTests
|
||||
depends_on:
|
||||
- install
|
||||
|
||||
- name: build
|
||||
image: node:18
|
||||
commands:
|
||||
- npm run build
|
||||
depends_on:
|
||||
- install
|
||||
---
|
||||
kind: signature
|
||||
hmac: 4bd5978dd32896759927d872cbc5cf92370ebf564b62709bd3d97b72f37f215c
|
||||
|
||||
...
|
Loading…
Reference in New Issue
Block a user