Skip to content

Commit

Permalink
1.16.4
Browse files Browse the repository at this point in the history
  • Loading branch information
XVincentX committed Jun 22, 2019
1 parent 93679f7 commit c0e0e5c
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
name: Generate new Helm and Docker files
command: node index.js
environment:
- EG_CHART_VERSION: 1.5.0
- EG_CHART_VERSION: 1.7.0
- run:
name: Create new commit with the changes
command: hub commit -sam "Update Express Gateway Images to $CIRCLE_TAG"
Expand Down
32 changes: 32 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
strategy:
matrix:
mac_node_10:
imageName: 'macOS-10.14'
node_version: 10.x
windows_node_10:
imageName: 'vs2017-win2016'
node_version: 10.x
mac_node_12:
imageName: 'macOS-10.14'
node_version: 12.x
windows_node_12:
imageName: 'vs2017-win2016'
node_version: 12.x

trigger:
- master

pool:
vmImage: $(imageName)

steps:
- task: NodeTool@0
inputs:
versionSpec: $(node_version)
displayName: 'Install Node.js'

- script: npm ci
displayName: 'Install deps'

- script: npm run test:all
displayName: 'Run tests'
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "express-gateway",
"version": "1.16.3",
"version": "1.16.4",
"description": "A microservices API gateway built on top of ExpressJS",
"homepage": "https://www.express-gateway.io",
"repository": "expressgateway/express-gateway",
Expand Down

0 comments on commit c0e0e5c

Please sign in to comment.