Skip to content

Commit

Permalink
Merge pull request #17 from Holo-Host/rc-0.2.2
Browse files Browse the repository at this point in the history
Release 0.2.2
  • Loading branch information
robbiecarlton authored Jan 11, 2021
2 parents 2f892ce + f1b8db5 commit 86036cb
Show file tree
Hide file tree
Showing 6 changed files with 416 additions and 5,233 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions

name: Node.js CI

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

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [12.x, 14.x]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run test
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# Changelog
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.2.2] - 2021-01-11
### Fixed
- `.ready` now throws any errors thrown by `.connect` and `COMB.connect`
Loading

0 comments on commit 86036cb

Please sign in to comment.