Skip to content

added covaralls badge #10

added covaralls badge

added covaralls badge #10

Workflow file for this run

name: Run Tests
on:
push:
branches:
- main
jobs:
test:
name: Run Tests
runs-on: windows-latest
strategy:
matrix:
node-version: [20.11.0]
steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm install
- name: Run Tests
run: npm test
- name: Send coverage to Coveralls
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: npx coveralls