mirror of
https://github.com/interep-project/contracts.git
synced 2026-01-13 23:37:59 -05:00
26 lines
524 B
YAML
26 lines
524 B
YAML
name: coverage
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
coveralls:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 16.x
|
|
|
|
- run: yarn --frozen-lockfile
|
|
- run: yarn compile
|
|
- run: yarn test:coverage
|
|
|
|
- uses: coverallsapp/github-action@master
|
|
with:
|
|
github-token: ${{ secrets.GITHUB_TOKEN }}
|