Skip to content

Bump lint-staged from 15.2.0 to 15.2.5 #303

Bump lint-staged from 15.2.0 to 15.2.5

Bump lint-staged from 15.2.0 to 15.2.5 #303

Workflow file for this run

on:
push:
pull_request:
branches:
- master
paths:
- "src/**/*"
name: Coverage Report
jobs:
coverage:
name: Build Coverage Report
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.10.0 LTS
uses: actions/setup-node@v4
with:
node-version: 20.10.0
- name: npm install, make test-coverage
run: |
npm install
npm run test:coverage
- name: Coveralls Parallel
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel: true
path-to-lcov: ./coverage/lcov.info # optional (default value)
- name: Coveralls Finished
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
parallel-finished: true