Skip to content

Updated jest Config: adding coverage #2

Updated jest Config: adding coverage

Updated jest Config: adding coverage #2

Workflow file for this run

name: CI
on: [pull_request, push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v1
with:
node-version: '18.x'
- name: Install dependencies
run: npm install
- name: Test
run: npm run test
- run: npx coveralls < coverage/lcov.info
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}