Skip to content

14.13.0

14.13.0 #51

Workflow file for this run

# sends test-coverage data to codecov.io
# https://codecov.io/gh/spencermountain/compromise
name: Coverage
on:
release:
types: [created]
jobs:
getCoverage:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version: '16'
cache: npm
- run: npm ci
- run: npm i -g c8 codecov
- run: c8 -r lcov -n 'src/**/*' -n 'plugins/**/*' npm run test && codecov -t 15039ad1-b495-48cd-b4a0-bcf124c9b318
# - run: npm run codecov