Skip to content

Commit b8994ed

Browse files
committed
💚 Fix CI
1 parent e5ef626 commit b8994ed

File tree

2 files changed

+9
-12
lines changed

2 files changed

+9
-12
lines changed

.github/workflows/cd.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# cd.yaml
2-
31
name: Build and Deploy
42

53
on: [push]

.github/workflows/ci.yaml

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# .github/workflows/ci.yaml
2-
31
name: CI
42

53
on: [push, pull_request]
@@ -35,12 +33,13 @@ jobs:
3533
- name: Tests
3634
run: deno test --coverage=./cov
3735

38-
- name: Generate Coverage
39-
if: matrix.os == 'ubuntu-latest'
40-
run: deno coverage --unstable --lcov ./cov > cov.lcov
36+
# Until denoland/deno#14397
37+
# - name: Generate Coverage
38+
# if: matrix.os == 'ubuntu-latest'
39+
# run: deno coverage --unstable --lcov ./cov > cov.lcov
4140

42-
- name: Upload Coverage
43-
if: matrix.os == 'ubuntu-latest'
44-
uses: codecov/codecov-action@v2
45-
with:
46-
files: cov.lcov
41+
# - name: Upload Coverage
42+
# if: matrix.os == 'ubuntu-latest'
43+
# uses: codecov/codecov-action@v2
44+
# with:
45+
# files: cov.lcov

0 commit comments

Comments
 (0)