Skip to content
This repository was archived by the owner on Oct 9, 2025. It is now read-only.

chore: do not fail on coveralls error #152

chore: do not fail on coveralls error

chore: do not fail on coveralls error #152

Workflow file for this run

name: Tests
on:
pull_request:
push:
branches:
- main
- rc
workflow_dispatch:
jobs:
autotests:
name: Run tests
strategy:
matrix:
node: ['20']
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Install dependencies
run: npm ci
- name: Run Test
run: npm run test:coverage
- name: Upload coverage results to Coveralls
uses: coverallsapp/github-action@v2
with:
fail-on-error: false
github-token: ${{ secrets.GITHUB_TOKEN }}