Skip to content

Commit 2579286

Browse files
committed
fix: GH Action
1 parent 5aa61a0 commit 2579286

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/deno-ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,11 +13,12 @@ jobs:
1313
- name: Set up Deno ${{ matrix.deno }}
1414
uses: denoland/[email protected]
1515
with:
16-
deno: ${{ matrix.deno }}
16+
deno-version: ${{ matrix.deno }}
1717
- name: Run tests
1818
run: deno test --allow-net --coverage=coverage/tmp --ignore=node_modules
1919
- name: Generate coverage
2020
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'
2122
- name: Upload coverage
2223
uses: codecov/codecov-action@v2
2324
if: matrix.os == 'ubuntu-latest' && matrix.deno == 'canary'

0 commit comments

Comments
 (0)