aboutsummaryrefslogtreecommitdiffstats
path: root/library/Sortable/.circleci/config.yml
diff options
context:
space:
mode:
authormjfriaza <mjfriaza@disroot.org>2022-05-17 13:44:06 +0200
committermjfriaza <mjfriaza@disroot.org>2022-05-17 13:44:06 +0200
commita75c61d71efebf43713026200aa0f513bd7eef09 (patch)
tree909048adeaa329813e2530d43626ed3bd711bc25 /library/Sortable/.circleci/config.yml
parent481ecee9e87342ca7a1217395085e95d1a3b61ea (diff)
parent0d0f73fb67bbfcc53058cefded85ac36f951c7a7 (diff)
downloadvolse-hubzilla-a75c61d71efebf43713026200aa0f513bd7eef09.tar.gz
volse-hubzilla-a75c61d71efebf43713026200aa0f513bd7eef09.tar.bz2
volse-hubzilla-a75c61d71efebf43713026200aa0f513bd7eef09.zip
Merge remote-tracking branch 'upstream/dev' into dev
Diffstat (limited to 'library/Sortable/.circleci/config.yml')
-rw-r--r--library/Sortable/.circleci/config.yml33
1 files changed, 33 insertions, 0 deletions
diff --git a/library/Sortable/.circleci/config.yml b/library/Sortable/.circleci/config.yml
new file mode 100644
index 000000000..ffbb4f1a7
--- /dev/null
+++ b/library/Sortable/.circleci/config.yml
@@ -0,0 +1,33 @@
+version: 2.0
+jobs:
+ build:
+ docker:
+ - image: circleci/node:10.16-browsers
+ steps:
+ - checkout
+
+ - restore_cache:
+ keys:
+ - v1-dependencies-{{ checksum "package.json" }}
+ - v1-dependencies-
+
+ - run: npm install
+
+ - save_cache:
+ paths:
+ - node_modules
+ key: v1-dependencies-{{ checksum "package.json" }}
+
+ - run: npm run build:umd
+
+ - run:
+ name: Compatibility Test
+ command: |
+ if [ -z "$CIRCLE_PR_NUMBER" ];
+ then
+ npm run test:compat
+ fi
+ - run: npm run test
+
+ - store_test_results:
+ path: /tmp/test-results