Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 24 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
version: 2
jobs:
test:
docker:
- image: cimg/node:14.17.5
steps:
- checkout
- restore_cache:
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: Installing Dependencies
command: npm install
- save_cache:
key: dependency-cache-{{ checksum "package.json" }}
paths:
- node_modules
- run:
name: Running Mocha Tests
command: npm test
workflows:
version: 2
build_and_test:
jobs:
- test
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 1.0.2 (November 26, 2021)

* Upgrade sailor version to 2.6.26

## 1.0.1 (December 30, 2019)

Update component to new sailor version 2.5.4
Expand Down
1 change: 1 addition & 0 deletions component.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"title": "Sphere.io",
"version": "1.0.2",
"description": "SPHERE.IO is the most versatile cloud based commerce platform. You can call it Software-as-a-Service or Platform-as-a-Service - we call it: Cloud eCommerce OS.",
"buildType": "docker",
"docsUrl": "http://go2.elastic.io/sphereio-component",
Expand Down
Loading