Files
pybricks-code/.github/workflows/coverage.yml
T
David Lechner aea52d4ab6 tool-versions: update to node v14
This is in preperation of adding a depedency that requires node >= 14.
2021-12-27 12:38:51 -06:00

23 lines
394 B
YAML

name: Coverage
on:
push:
branches: [ master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v1
with:
node-version: '14.x'
- uses: actions/checkout@v2
- run: yarn install
- run: yarn coverage
- name: Coveralls
uses: coverallsapp/github-action@v1.1.2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}