Skip to content

Move core of CI to GitHub #82

Move core of CI to GitHub

Move core of CI to GitHub #82

Workflow file for this run

name: Submit to coveralls
on:
push:
branches:
- main
pull_request:
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
- run: npm ci
- name: Test
run: npm run coverage
- name: Submit
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}