Skip to content

Commit 57bddeb

Browse files
authored
Updated sailor version to 2.6.26 (#53)
Updated sailor version to 2.6.26
1 parent 9f1b340 commit 57bddeb

File tree

5 files changed

+3960
-39
lines changed

5 files changed

+3960
-39
lines changed

.circleci/config.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,25 @@
11
version: 2 # use CircleCI 2.0
22
jobs: # a collection of steps
3-
build: # runs not using Workflows must have a `build` job as entry point
3+
test: # runs not using Workflows must have a `build` job as entry point
44
docker: # run the steps with Docker
5-
- image: circleci/node:10-stretch # ...with this image as the primary container; this is where all `steps` will run
5+
- image: circleci/node:12-stretch # ...with this image as the primary container; this is where all `steps` will run
66
steps: # a collection of executable commands
77
- checkout # special step to check out source code to working directory
8-
- run:
9-
name: update-npm
10-
command: 'sudo npm install -g npm@latest'
118
- restore_cache: # special step to restore the dependency cache
129
# Read about caching dependencies: https://circleci.com/docs/2.0/caching/
1310
key: dependency-cache-{{ checksum "package.json" }}
1411
- run:
15-
name: install-npm-wee
12+
name: Installing Dependencies
1613
command: npm install
1714
- save_cache: # special step to save the dependency cache
1815
key: dependency-cache-{{ checksum "package.json" }}
1916
paths:
20-
- ./node_modules
17+
- node_modules
2118
- run: # run tests
2219
name: test
23-
command: npm test
20+
command: npm test
21+
workflows:
22+
version: 2
23+
build_and_test:
24+
jobs:
25+
- test

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 1.2.6 (November 26, 2021)
2+
3+
* Updated sailor version to 2.6.26
4+
15
## 1.2.5 (February 12, 2021)
26

37
* Update sailor version to 2.6.24

component.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"title": "Node.js Code",
3+
"version": "1.2.6",
34
"description": "You can write your own code and deploy it as part of integration process.",
45
"buildType": "docker",
56
"docsUrl": "http://go2.elastic.io/code-component",

0 commit comments

Comments
 (0)