Skip to content

Commit f997258

Browse files
committed
removed unneccessary code
1 parent 412d5fb commit f997258

File tree

8 files changed

+16
-19
lines changed

8 files changed

+16
-19
lines changed

.github/workflows/functions_client.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ jobs:
5656
- name: Run tests
5757
run: dart test --coverage=./coverage
5858

59-
- name: Update coverage
60-
run: melos run update-coverage
59+
- name: Format coverage
60+
run: melos run format-coverage
6161

6262
- name: Upload coverage results to Coveralls
6363
uses: coverallsapp/github-action@master

.github/workflows/gotrue.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -64,8 +64,8 @@ jobs:
6464
- name: Run tests
6565
run: dart test --concurrency=1 --coverage=./coverage
6666

67-
- name: Update coverage
68-
run: melos run update-coverage
67+
- name: Format coverage
68+
run: melos run format-coverage
6969

7070
- name: Upload coverage results to Coveralls
7171
uses: coverallsapp/github-action@master

.github/workflows/postgrest.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@ jobs:
6666
- name: Run tests
6767
run: dart test --concurrency=1 --coverage=./coverage
6868

69-
- name: Update coverage
70-
run: melos run update-coverage
69+
- name: Format coverage
70+
run: melos run format-coverage
7171

7272
- name: Upload coverage results to Coveralls
7373
uses: coverallsapp/github-action@master

.github/workflows/realtime_client.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ jobs:
5353
- name: Run tests
5454
run: dart test --coverage=./coverage
5555

56-
- name: Update coverage
57-
run: melos run update-coverage
56+
- name: Format coverage
57+
run: melos run format-coverage
5858

5959
- name: Upload coverage results to Coveralls
6060
uses: coverallsapp/github-action@master

.github/workflows/storage_client.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ jobs:
6363
- name: Run tests
6464
run: dart test --coverage=./coverage
6565

66-
- name: Update coverage
67-
run: melos run update-coverage
66+
- name: Format coverage
67+
run: melos run format-coverage
6868

6969
- name: Upload coverage results to Coveralls
7070
uses: coverallsapp/github-action@master

.github/workflows/supabase.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,11 +63,9 @@ jobs:
6363
- name: Run tests
6464
run: dart test --concurrency=1 --coverage=./coverage
6565

66-
- name: Update coverage
67-
run: |
68-
dart pub global activate combine_coverage
69-
melos run update-coverage
70-
dart pub global run combine_coverage --repo-path="../../"
66+
- name: Format coverage
67+
run: melos run format-coverage
68+
7169

7270
- name: Upload coverage results to Coveralls
7371
uses: coverallsapp/github-action@master

.github/workflows/yet_another_json_isolate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ jobs:
5353
- name: Run tests
5454
run: dart test --coverage=./coverage
5555

56-
- name: Update coverage
57-
run: melos run update-coverage
56+
- name: Format coverage
57+
run: melos run format-coverage
5858

5959
- name: Upload coverage results to Coveralls
6060
uses: coverallsapp/github-action@master

melos.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,8 @@ scripts:
5858
update-coverage:
5959
description: Updates the coverage for the workspace
6060
run: |
61-
# Activate coverage and combine_coverage
61+
# Activate coverage
6262
dart pub global activate coverage
63-
dart pub global activate combine_coverage
6463
6564
# Format coverage
6665
dart pub global run coverage:format_coverage --lcov --in="./coverage/test" --out="./coverage/lcov.info" --report-on="./lib"

0 commit comments

Comments
 (0)