File tree Expand file tree Collapse file tree 5 files changed +3960
-39
lines changed
Expand file tree Collapse file tree 5 files changed +3960
-39
lines changed Original file line number Diff line number Diff line change 11version : 2 # use CircleCI 2.0
22jobs : # 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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" ,
You can’t perform that action at this time.
0 commit comments