Add support for CI

This commit is contained in:
Jack Hadrill 2022-01-29 11:43:08 +00:00
parent 20cf4e0731
commit 2dedbba5b7
2 changed files with 40 additions and 0 deletions

39
.drone.yml Normal file
View File

@ -0,0 +1,39 @@
kind: pipeline
type: docker
name: build
steps:
- name: lint
image: node:lts-alpine
commands:
- npm install
- npm run lint
- name: test
image: node:lts-alpine
commands:
- npm install
- npm run test
- name: build
image: node:lts-alpine
commands:
- npm install
- npm run build
- name: publish
image: plugins/gitea-release
depends_on:
- build
when:
event:
- tag
settings:
base_url: https://git.jacknet.io
api_key:
from_secret: gitea_token
files:
- dist/*
checksum:
- md5
- sha256

View File

@ -4,6 +4,7 @@
"description": "An implementation of the Romulus-M cryptography specification.",
"main": "index.js",
"scripts": {
"lint": "ts-standard",
"test": "jest",
"build": "tsc"
},