aboutsummaryrefslogtreecommitdiffstats
path: root/library/Sortable/.circleci/config.yml
diff options
context:
space:
mode:
authorMario <mario@mariovavti.com>2021-08-03 07:12:36 +0000
committerMario <mario@mariovavti.com>2021-08-03 07:12:36 +0000
commit08f70c49f8a43cf806f8ca28e9b6c3b7823522b4 (patch)
treef24595d659adbb7d1e5d2e8e6dcd829b093887bb /library/Sortable/.circleci/config.yml
parent571bae9d1c07bb08270163a314c91c138b42e62f (diff)
parentcddc0217724f1a7661014d50e4c940e623a0c2dc (diff)
downloadvolse-hubzilla-08f70c49f8a43cf806f8ca28e9b6c3b7823522b4.tar.gz
volse-hubzilla-08f70c49f8a43cf806f8ca28e9b6c3b7823522b4.tar.bz2
volse-hubzilla-08f70c49f8a43cf806f8ca28e9b6c3b7823522b4.zip
Merge branch 'app-bin-ng' into 'dev'
Apps drag and drop feature See merge request hubzilla/core!1982
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