CI/CD pipeline
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
Erik 2023-02-11 13:57:15 +02:00
parent d2a9348051
commit 8f0292d151
Signed by: Navy.gif
GPG Key ID: 2532FBBB61C65A68
2 changed files with 12 additions and 1 deletions

10
.drone.yml Normal file
View File

@ -0,0 +1,10 @@
kind: pipeline
type: docker
name: compliance
steps:
- name: deps
image: node
commands:
- yarn install
- yarn lint

View File

@ -34,7 +34,8 @@
"nodemon": "^2.0.20"
},
"scripts": {
"start": "node index.js"
"start": "node index.js",
"lint": "eslint src/"
},
"engines": {
"node": ">=18.0.0"