Skip to content

CI-report-coverage

CI-report-coverage #79

name: CI-report-coverage
on:
push:
branches:
- main
paths:
- 'packages/**'
workflow_dispatch:
jobs:
lint-build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '22'
cache: 'npm'
- name: Install packages
run: npm i
- name: Test
run: npm run test
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.COVERALLS_REPO_TOKEN }}