Skip to content

Commit 412d5fb

Browse files
committed
chore: Upload coverage results
1 parent 3bc6134 commit 412d5fb

File tree

9 files changed

+47
-5
lines changed

9 files changed

+47
-5
lines changed

.github/workflows/functions_client.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,9 @@ jobs:
5858

5959
- name: Update coverage
6060
run: melos run update-coverage
61+
62+
- name: Upload coverage results to Coveralls
63+
uses: coverallsapp/github-action@master
64+
with:
65+
github-token: ${{ secrets.GITHUB_TOKEN }}
66+
path-to-lcov: ./coverage/lcov.info

.github/workflows/gotrue.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,3 +66,9 @@ jobs:
6666

6767
- name: Update coverage
6868
run: melos run update-coverage
69+
70+
- name: Upload coverage results to Coveralls
71+
uses: coverallsapp/github-action@master
72+
with:
73+
github-token: ${{ secrets.GITHUB_TOKEN }}
74+
path-to-lcov: ./coverage/lcov.info

.github/workflows/postgrest.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,9 @@ jobs:
6868

6969
- name: Update coverage
7070
run: melos run update-coverage
71+
72+
- name: Upload coverage results to Coveralls
73+
uses: coverallsapp/github-action@master
74+
with:
75+
github-token: ${{ secrets.GITHUB_TOKEN }}
76+
path-to-lcov: ./coverage/lcov.info

.github/workflows/realtime_client.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,9 @@ jobs:
5555

5656
- name: Update coverage
5757
run: melos run update-coverage
58+
59+
- name: Upload coverage results to Coveralls
60+
uses: coverallsapp/github-action@master
61+
with:
62+
github-token: ${{ secrets.GITHUB_TOKEN }}
63+
path-to-lcov: ./coverage/lcov.info

.github/workflows/storage_client.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,9 @@ jobs:
6565

6666
- name: Update coverage
6767
run: melos run update-coverage
68+
69+
- name: Upload coverage results to Coveralls
70+
uses: coverallsapp/github-action@master
71+
with:
72+
github-token: ${{ secrets.GITHUB_TOKEN }}
73+
path-to-lcov: ./coverage/lcov.info

.github/workflows/supabase.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,9 @@ jobs:
6868
dart pub global activate combine_coverage
6969
melos run update-coverage
7070
dart pub global run combine_coverage --repo-path="../../"
71+
72+
- name: Upload coverage results to Coveralls
73+
uses: coverallsapp/github-action@master
74+
with:
75+
github-token: ${{ secrets.GITHUB_TOKEN }}
76+
path-to-lcov: ./coverage/lcov.info

.github/workflows/supabase_flutter.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,5 +80,8 @@ jobs:
8080
cd example
8181
flutter build web
8282
83-
- name: Update coverage
84-
run: melos run update-coverage
83+
- name: Upload coverage results to Coveralls
84+
uses: coverallsapp/github-action@master
85+
with:
86+
github-token: ${{ secrets.GITHUB_TOKEN }}
87+
path-to-lcov: ./coverage/lcov.info

.github/workflows/yet_another_json_isolate.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,9 @@ jobs:
5555

5656
- name: Update coverage
5757
run: melos run update-coverage
58+
59+
- name: Upload coverage results to Coveralls
60+
uses: coverallsapp/github-action@master
61+
with:
62+
github-token: ${{ secrets.GITHUB_TOKEN }}
63+
path-to-lcov: ./coverage/lcov.info

melos.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,3 @@ scripts:
6464
6565
# Format coverage
6666
dart pub global run coverage:format_coverage --lcov --in="./coverage/test" --out="./coverage/lcov.info" --report-on="./lib"
67-
68-
# Combine coverage
69-
dart pub global run combine_coverage --repo-path="../../"

0 commit comments

Comments
 (0)