Skip to content

Merge pull request #7 from olaviolacerda/feature/testing-unit #14

Merge pull request #7 from olaviolacerda/feature/testing-unit

Merge pull request #7 from olaviolacerda/feature/testing-unit #14

Workflow file for this run

name: Test Coveralls
on:
push:
branches: ['main']
pull_request:
branches: ['main']
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x
- run: npm ci
- run: npm run build --if-present
- run: npm run test:cov
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}