Skip to content

Commit a70735c

Browse files
Fix #72: include source maps in npm releases (#73)
Co-authored-by: Denis Tokarev <[email protected]>
1 parent cb3724b commit a70735c

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@ jobs:
3232
run: npm ci --ignore-scripts
3333
- name: Run tests
3434
run: npm run test:ci
35+
- name: Report coverage
36+
uses: qltysh/qlty-action/coverage@v2
37+
with:
38+
token: '{{secrets.QLTY_COVERAGE_TOKEN}}'
39+
files: coverage/lcov.info
3540
- name: Upload coverage
3641
uses: actions/upload-artifact@v4
3742
with:

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,8 @@
6767
"docs",
6868
"LICENSE",
6969
"dist/*.js",
70-
"dist/*.d.ts"
70+
"dist/*.d.ts",
71+
"dist/*.map"
7172
],
7273
"funding": {
7374
"type": "individual",

0 commit comments

Comments
 (0)