Skip to content

Thisyahlen/ci: add coveralls workflow #1

Thisyahlen/ci: add coveralls workflow

Thisyahlen/ci: add coveralls workflow #1

Workflow file for this run

on:
push:
branches:
- master
pull_request:
types: [opened, synchronize, edited]
name: Coveralls
jobs:
build:
name: Reporter
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
- name: Setup Node
uses: actions/setup-node@f1f314fca9dfce2769ece7d933488f076716723e
with:
node-version: 20.x
- name: Install dependencies
uses: "./.github/actions/npm_install_from_cache"
- name: Build
uses: "./.github/actions/build"
- name: Test
run: JEST_MAX_WORKERS=95% npm run test -- --collectCoverage
- name: Coveralls
uses: coverallsapp/github-action@3dfc5567390f6fa9267c0ee9c251e4c8c3f18949