Skip to content
Merged
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
18 changes: 10 additions & 8 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,25 @@
version: 2 # use CircleCI 2.0
jobs: # a collection of steps
build: # runs not using Workflows must have a `build` job as entry point
test: # runs not using Workflows must have a `build` job as entry point
docker: # run the steps with Docker
- image: circleci/node:10-stretch # ...with this image as the primary container; this is where all `steps` will run
- image: circleci/node:12-stretch # ...with this image as the primary container; this is where all `steps` will run
steps: # a collection of executable commands
- checkout # special step to check out source code to working directory
- run:
name: update-npm
command: 'sudo npm install -g npm@latest'
- restore_cache: # special step to restore the dependency cache
# Read about caching dependencies: https://circleci.com/docs/2.0/caching/
key: dependency-cache-{{ checksum "package.json" }}
- run:
name: install-npm-wee
name: Installing Dependencies
command: npm install
- save_cache: # special step to save the dependency cache
key: dependency-cache-{{ checksum "package.json" }}
paths:
- ./node_modules
- node_modules
- run: # run tests
name: test
command: npm test
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.2.6 (November 26, 2021)

* Updated sailor version to 2.6.26

## 1.2.5 (February 12, 2021)

* Update sailor version to 2.6.24
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": "Node.js Code",
"version": "1.2.6",
"description": "You can write your own code and deploy it as part of integration process.",
"buildType": "docker",
"docsUrl": "http://go2.elastic.io/code-component",
Expand Down
Loading