Skip to content

Update index.md (#76) #122

Update index.md (#76)

Update index.md (#76) #122

Workflow file for this run

name: Submit to coveralls
on:
push:
branches:
- main
workflow_dispatch:
jobs:
submit-coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 22.x
registry-url: 'https://registry.npmjs.org'
- run: npm ci
- name: Test
run: npm run coverage
- name: Submit
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}