Skip to content

feature: trying to add Best coverage #8

feature: trying to add Best coverage

feature: trying to add Best coverage #8

Workflow file for this run

name: Coveralls
on:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies
run: yarn install
- name: Run tests
run: yarn test:unit --coverage
- name: Coveralls GitHub Action
uses: coverallsapp/github-action@v2.2.3
- name: Upload coverage to Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}