Skip to content

Release 1.2.0

Release 1.2.0 #6

Workflow file for this run

on: [ pull_request ]
name: Test Coverage
jobs:
coverage:
name: Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
name: Checkout Module
with:
fetch-depth: 1
- name: Use Node.js 14
uses: actions/setup-node@master
with:
node-version: 18
- run: |
npm install
npm install --no-save nyc codecov
- run: npx nyc --reporter=lcovonly npm test
env:
NODE_ENV: cov
- name: Codecov Report
uses: codecov/codecov-action@v2
with:
name: codecov-umbrella
files: ./coverage.lcov
- name: Coveralls Report
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.github_token }}
- name: CodeClimate Reporter
uses: paambaati/[email protected]
env:
CC_TEST_REPORTER_ID: d196ece82e5a76cc8ef4b7abe23d45a48106e0b4f3775070655ecc72a4b06cb2