Skip to content

Prepare to release 5.0.0 #28

Prepare to release 5.0.0

Prepare to release 5.0.0 #28

Workflow file for this run

---
name: coverage
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
name: coverage
strategy:
matrix:
node-version: [20.x]
steps:
- name: Checkout Repository
uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Setup Node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
always-auth: false
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: npm install
- name: Run Tests
run: npm run test:coverage
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}