We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42f5f10 commit 819ddbfCopy full SHA for 819ddbf
2 files changed
.github/workflows/npm-publish.yml
@@ -34,7 +34,12 @@ jobs:
34
# run linter
35
- run: npm run lint
36
# run tests just in case
37
- - run: npm test
+ - run: npm test -- --coverage
38
+ # send code coverage to coveralls
39
+ - name: Coveralls
40
+ uses: coverallsapp/github-action@master
41
+ with:
42
+ github-token: ${{ secrets.GITHUB_TOKEN }}
43
# upgrade npm version in package.json to the tag used in the release.
44
- run: npm version ${{ github.event.release.tag_name }}
45
# publish the package
.gitignore
@@ -1,2 +1,3 @@
1
node_modules
2
-/dist
+/dist
3
+/coverage
0 commit comments