Skip to content

bookmark: release v0.3.15 #201

bookmark: release v0.3.15

bookmark: release v0.3.15 #201

Workflow file for this run

name: Coveralls
on:
push:
branches:
- master
- develop
jobs:
install-and-coveralls:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Cache node modules
uses: actions/cache@v1
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.os }}-node-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: install
run: yarn --network-timeout 600000
- name: yarn add coveralls
run: |
yarn add -D coveralls
yarn run test --coverage && cat ./coverage/lcov.info
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}