We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 078d424 + df46145 commit a563fb1Copy full SHA for a563fb1
.github/workflows/test.yml
@@ -0,0 +1,22 @@
1
+name: Tests
2
+on: [ push, pull_request ]
3
+
4
+env:
5
+ COVERALLS_SERVICE_NUMBER: ${{ github.run_id }}-${{ github.run_number }}-${{ github.run_attempt }}
6
+ COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v3
13
+ - uses: actions/setup-node@v3
14
+ with:
15
+ node-version: lts/*
16
+ cache: yarn
17
+ - run: yarn install
18
+ - run: yarn run coveralls
19
+ - name: Coveralls
20
+ id: coveralls
21
+ uses: coverallsapp/github-action@v2
22
.istanbul.yml
@@ -0,0 +1,4 @@
+instrumentation:
+ root: ./src
+ include-all-sources: true
0 commit comments