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.
1 parent 5aa61a0 commit 2579286Copy full SHA for 2579286
.github/workflows/deno-ci.yml
@@ -13,11 +13,12 @@ jobs:
13
- name: Set up Deno ${{ matrix.deno }}
14
uses: denoland/[email protected]
15
with:
16
- deno: ${{ matrix.deno }}
+ deno-version: ${{ matrix.deno }}
17
- name: Run tests
18
run: deno test --allow-net --coverage=coverage/tmp --ignore=node_modules
19
- name: Generate coverage
20
run: deno coverage coverage/tmp --lcov > coverage/lcov.info; sed -i.bak -E 's/SF:.*\/([^/]+\.ts)/SF:\1/' coverage/lcov.info; rm -f coverage/lcov.info.bak
21
+ if: matrix.os == 'ubuntu-latest' && matrix.deno == 'canary'
22
- name: Upload coverage
23
uses: codecov/codecov-action@v2
24
if: matrix.os == 'ubuntu-latest' && matrix.deno == 'canary'
0 commit comments