summaryrefslogtreecommitdiffstats
path: root/.drone.yml
diff options
context:
space:
mode:
authorDashie <dashie@sigpipe.me>2019-06-24 17:03:10 +0200
committerDashie <dashie@sigpipe.me>2019-09-14 08:55:33 +0200
commita455c793cd9b36053838b4c5585d5ea37fe0e5d3 (patch)
treedbf38768ca16aec161fd12d15b816de017c9683b /.drone.yml
parenta22da590a3cd35855e21352796f5eb7d100fb9e1 (diff)
Add npm things in CI
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml16
1 files changed, 16 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
index e6ab2dc5..fc403417 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -38,6 +38,22 @@ steps:
- cp tests/config_test.py config.py
- python setup.py test
+- name: front-linting
+ pull: default
+ image: node:10
+ commands:
+ - cd front
+ - npm install
+ - npm lint
+
+- name: front-building
+ pull: default
+ image: node:10
+ commands:
+ - cd front
+ - npm install
+ - npm build
+
- name: migrations
pull: default
image: python:3-alpine