diff options
author | Jesús <heckyel@hyperbola.info> | 2021-02-22 13:25:53 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2021-02-22 13:25:53 -0500 |
commit | 158fd15ea11b9c1cb440c73204a7728974e184cc (patch) | |
tree | 07678413637b0a16e1c0381cb66aa5b333ae0db7 | |
parent | 2d16f69ab60dfc99cb93130e97bb87b6bd7794d0 (diff) | |
download | libresocial-158fd15ea11b9c1cb440c73204a7728974e184cc.tar.lz libresocial-158fd15ea11b9c1cb440c73204a7728974e184cc.tar.xz libresocial-158fd15ea11b9c1cb440c73204a7728974e184cc.zip |
Add .build.yml file
-rw-r--r-- | lab/.build.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/lab/.build.yml b/lab/.build.yml new file mode 100644 index 0000000..46516d3 --- /dev/null +++ b/lab/.build.yml @@ -0,0 +1,14 @@ +image: debian/buster +packages: + - python3-pip + - nodejs + - npm +tasks: + - test-json: | + cd libresocial + pip3 install json-spec + json validate --schema-file=lab/metadata.json --document-file=lab/metadata.json + - test-css: | + cd libresocial + npm install -g csslint + csslint css/libresocial.css |