Skip to content

Commit

Permalink
Merge pull request #8 from vanduynslagerp/update
Browse files Browse the repository at this point in the history
Updates
  • Loading branch information
pvdlg authored Aug 25, 2017
2 parents 39568b4 + 915f610 commit 9988cde
Show file tree
Hide file tree
Showing 7 changed files with 2,883 additions and 576 deletions.
42 changes: 26 additions & 16 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,35 +1,45 @@
sudo: false
dist: trusty
language: node_js
node_js:
- node
- 8
- 6
- 4
os:
- linux
- osx
cache:
directories:
- node_modules
branches:
only:
- master
- /^greenkeeper.*$/
git:
depth: 3
cache:
directories: node_modules
env:
global:
- GIT_COMMITTED_AT=$(if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then git log -1 --pretty=format:%ct; else git log -1 --skip 1 --pretty=format:%ct; fi)
depth: 999
before_install:
- if [[ `npm -v` != 5* ]]; then npm install -g npm@5; fi
- if [[ `npm -v` < 5* ]]; then npm install -g npm@5; fi
- npm install -g greenkeeper-lockfile@1
before_script:
- npm prune
- greenkeeper-lockfile-update
- if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 --retry 3 -o ./cc-test-reporter; fi
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-darwin-amd64 --retry 3 -o ./cc-test-reporter; fi
- chmod +x ./cc-test-reporter
script:
- npm run test
after_script:
- greenkeeper-lockfile-upload
after_success:
- if [ -n "${CC_TEST_REPORTER_ID:-}" ]; then ./cc-test-reporter after-build --exit-code $TRAVIS_TEST_RESULT -d; fi
- if [ -n "${CODECOV_TOKEN:-}" ]; then npm run codecov; fi
env:
- BUILD_LEADER_ID=7
jobs:
include:
- stage: release
node_js: 8
os: linux
before_install:
- npm install -g greenkeeper-lockfile@1
before_script:
- npm prune
- greenkeeper-lockfile-update
script: npm run test
after_script:
- greenkeeper-lockfile-upload
after_success:
- if [ -n "${CODECOV_TOKEN:-}" ]; then npm run codecov; fi
- npm run semantic-release
13 changes: 7 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,17 @@

A Karma plugin for [Jasmine-jQuery](https://github.com/velesin/jasmine-jquery).

[![Travis](https://img.shields.io/travis/vanduynslagerp/karma-jasmine-jquery.svg)](https://travis-ci.org/vanduynslagerp/karma-jasmine-jquery)
[![AppVeyor](https://img.shields.io/appveyor/ci/vanduynslagerp/karma-jasmine-jquery.svg)](https://ci.appveyor.com/project/vanduynslagerp/karma-jasmine-jquery)
[![Code Climate](https://img.shields.io/codeclimate/github/vanduynslagerp/karma-jasmine-jquery.svg)](https://codeclimate.com/github/vanduynslagerp/karma-jasmine-jquery)
[![Code Climate](https://img.shields.io/codeclimate/issues/github/vanduynslagerp/karma-jasmine-jquery.svg)](https://codeclimate.com/github/vanduynslagerp/karma-jasmine-jquery/issues)
[![Codecov](https://img.shields.io/codecov/c/github/vanduynslagerp/karma-jasmine-jquery.svg)](https://codecov.io/gh/vanduynslagerp/karma-jasmine-jquery)

[![npm](https://img.shields.io/npm/v/@metahub/karma-jasmine-jquery.svg)](https://www.npmjs.com/package/@metahub/karma-jasmine-jquery)
[![npm](https://img.shields.io/npm/dt/@metahub/karma-jasmine-jquery.svg)](https://www.npmjs.com/package/@metahub/karma-jasmine-jquery)
[![Greenkeeper badge](https://badges.greenkeeper.io/vanduynslagerp/karma-jasmine-jquery.svg)](https://greenkeeper.io/)
[![license](https://img.shields.io/github/license/vanduynslagerp/karma-jasmine-jquery.svg)](https://github.com/vanduynslagerp/karma-jasmine-jquery/blob/master/LICENSE)
[![semantic-release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg)](https://github.com/semantic-release/semantic-release)
[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg)](http://commitizen.github.io/cz-cli/)

[![Travis](https://img.shields.io/travis/vanduynslagerp/karma-jasmine-jquery.svg)](https://travis-ci.org/vanduynslagerp/karma-jasmine-jquery)
[![AppVeyor](https://img.shields.io/appveyor/ci/vanduynslagerp/karma-jasmine-jquery.svg)](https://ci.appveyor.com/project/vanduynslagerp/karma-jasmine-jquery)
[![Code Climate](https://img.shields.io/codeclimate/github/vanduynslagerp/karma-jasmine-jquery.svg)](https://codeclimate.com/github/vanduynslagerp/karma-jasmine-jquery)
[![Codecov](https://img.shields.io/codecov/c/github/vanduynslagerp/karma-jasmine-jquery.svg)](https://codecov.io/gh/vanduynslagerp/karma-jasmine-jquery)

## Installation

Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@ version: '{build}'
environment:
matrix:
- nodejs_version: '4'
- nodejs_version: '7'
- nodejs_version: '8'
branches:
only:
- master
- /^greenkeeper.*$/
install:
- ps: Install-Product node $env:nodejs_version
- IF %nodejs_version% LSS 5 npm -g install npm@3
- IF %nodejs_version% LSS 5 npm -g install npm@5
- npm install
platform:
- x86
Expand Down
1 change: 1 addition & 0 deletions commitlint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module.exports = {extends: ['@commitlint/config-angular']};
Loading

0 comments on commit 9988cde

Please sign in to comment.