bennc-js/.drone.yml

52 lines
860 B
YAML
Raw Permalink Normal View History

2022-01-30 17:44:50 +00:00
kind: pipeline
type: docker
name: build
steps:
- name: install
image: node:lts-alpine
commands:
2022-02-06 20:46:43 +00:00
- apk add git
2022-01-30 17:44:50 +00:00
- npm install
- name: lint
image: node:lts-alpine
commands:
- npm run lint
depends_on:
- install
- name: test
image: node:lts-alpine
commands:
- npm run test
depends_on:
- install
- name: build
image: node:lts-alpine
commands:
- apk add zip
- npm run build
- zip -r bennc-m.zip dist/
depends_on:
- install
- name: publish
image: plugins/gitea-release
depends_on:
- lint
- test
- build
when:
event:
- tag
settings:
base_url: https://git.jacknet.io
api_key:
from_secret: gitea_token
files:
- bennc-m.zip
checksum:
- md5
- sha256