Skip to content

build: use release instead of tags to trigger a build #128

build: use release instead of tags to trigger a build

build: use release instead of tags to trigger a build #128

Workflow file for this run

name: Coverage
on:
pull_request:
push:
branches:
- master
- beta
jobs:
coverage:
name: Coverage
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
- name: Install
run: npm ci
- name: Test
run: npm test
- name: Coveralls
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}