Skip to content

Merge pull request #6 from olaviolacerda/olaviolacerda-patch-1 #12

Merge pull request #6 from olaviolacerda/olaviolacerda-patch-1

Merge pull request #6 from olaviolacerda/olaviolacerda-patch-1 #12

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 }}