Skip to content

Commit

Permalink
Merge branch 'master' of github.com:samrum/homebridge-onstar into fix…
Browse files Browse the repository at this point in the history
…-siri-response
  • Loading branch information
samrum committed Jul 19, 2020
2 parents ffd09ea + f482413 commit dc83d0d
Show file tree
Hide file tree
Showing 5 changed files with 37 additions and 14 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: build

on:
push:
branches: [master]
pull_request:
branches: [master]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: yarn install, and build
run: |
yarn install
yarn build
test-unit:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: yarn install, and test
run: |
yarn install
yarn test:coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
9 changes: 0 additions & 9 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# homebridge-onstar (OnStar Accessory)

[![npm version](https://badge.fury.io/js/homebridge-onstar.svg)](https://badge.fury.io/js/homebridge-onstar)
[![Build Status](https://travis-ci.org/samrum/homebridge-onstar.svg?branch=master)](https://travis-ci.org/samrum/homebridge-onstar)
[![build](https://github.com/samrum/homebridge-onstar/workflows/build/badge.svg)](https://github.com/samrum/homebridge-onstar/actions?query=workflow%3Abuild)
[![Coverage Status](https://coveralls.io/repos/github/samrum/homebridge-onstar/badge.svg?branch=master)](https://coveralls.io/github/samrum/homebridge-onstar?branch=master)

Homebridge support for OnStar!
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"build": "rm -rf dist && rollup -c",
"dev": "rm -rf dist && rollup -c -w",
"test": "jest",
"coverage": "jest --coverage",
"test:coverage": "jest --coverage",
"prepublishOnly": "yarn run test && yarn run build"
},
"sideEffects": false,
Expand Down
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2291,9 +2291,9 @@ lodash.sortby@^4.7.0:
integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=

lodash@^4.17.13, lodash@^4.17.15, lodash@^4.17.5:
version "4.17.15"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
version "4.17.19"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b"
integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==

log-driver@^1.2.7:
version "1.2.7"
Expand Down

0 comments on commit dc83d0d

Please sign in to comment.