Files
pybricks-code/.github/workflows/coverage.yml
T
David Lechner 109e65b54f tool-versions: update to node 16
This is needed for the String.replaceAll() method.
2022-02-22 12:32:20 -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: '16.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 }}