04 Sep 2017
We will use Jest-junit test reporter to integrate jest results with Jenkins.
Installation
npm install -D jest jest-junit
Configuration
Add to package.json:
"scripts": {
...
"test": "jest"
}
Add to Jenkinsfile:
stage ('tests') {
withEnv(["JEST_JUNIT_OUTPUT=./jest-test-results.xml"]) {
sh 'npm test -- --ci --testResultsProcessor="jest-junit"'
}
junit 'jest-test-results.xml'
}
25 Oct 2016
I have created new jincod/dotnetcore-buildpack
heroku buildpacks:set https://github.com/jincod/dotnetcore-buildpack
AspNet5 Demo App
git clone https://github.com/jincod/AspNet5DemoApp.git
git push origin master
Deploy to Heroku
Click the button below to set up this sample app on Heroku:

05 Sep 2016
Update spreadsheet values using Google Sheets API V4 and google-api-nodejs-client
18 Jun 2016
Appveyor.yml
environment:
SURGE_LOGIN: login
SURGE_TOKEN:
secure: secure-string
install:
- ps: Install-Product node 0
- npm install -g npm
- npm install
build: off
build_script:
- npm run build
deploy_script:
- npm run deploy
Scripts section in package.json
"scripts": {
"build": "webpack --config webpack.config.js",
"deploy": "surge --project ./dist --domain domain.surge.sh"
}