Skip to content

Commit

Permalink
Merge 631bc15 into 0ba2d31
Browse files Browse the repository at this point in the history
  • Loading branch information
warerebel committed Mar 30, 2022
2 parents 0ba2d31 + 631bc15 commit 5a731d5
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 1 deletion.
14 changes: 14 additions & 0 deletions .github/workflows/node.js.yml
Expand Up @@ -30,3 +30,17 @@ jobs:
- run: npm run lint
- run: npm run build --if-present
- run: npm run coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}

finish:
needs: build
runs-on: ubuntu-latest
steps:
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
parallel-finished: true
12 changes: 12 additions & 0 deletions Changelog
@@ -0,0 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

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).

## [1.0.0] - 2022-03-30
### Added
- function: harmonicAverage
- function: translate
- function: baselineLength
- function: validateInput
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -10,7 +10,7 @@
"prepare": "tsc",
"build": "tsc",
"test": "mocha -r ts-node/register **/*.spec.ts",
"coverage": "nyc mocha -r ts-node/register -r source-map-support/register test/**/*.spec.ts"
"coverage": "nyc --reporter=lcov --reporter=text mocha -r ts-node/register -r source-map-support/register test/**/*.spec.ts"
},
"author": "Chris Lount <chris.lount@warerebel.com>",
"license": "GPL-3.0",
Expand Down

0 comments on commit 5a731d5

Please sign in to comment.