Skip to content

Refactoring various functions. #141

Refactoring various functions.

Refactoring various functions. #141

Workflow file for this run

on: ["push", "pull_request"]
name: Test Coveralls
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js 10.x
uses: actions/setup-node@master
with:
node-version: 10.x
- name: npm install, make test-coverage
run: |
npm install
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
path-to-lcov: "./coverage/tests.lcov"
base-path: "./src"