Skip to content
This repository was archived by the owner on Apr 15, 2025. It is now read-only.

Commit 278b8e4

Browse files
committed
chore: fix codecov
1 parent 254ca31 commit 278b8e4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
name: CI
22
on:
33
push:
4-
branches: [ master ]
4+
branches: [master]
55
pull_request:
6-
branches: [ master ]
6+
branches: [master]
77
jobs:
88
build:
99
runs-on: ubuntu-latest
@@ -32,14 +32,14 @@ jobs:
3232
run: yarn lint
3333
env:
3434
CI: true
35-
35+
3636
- name: Test
37-
run: yarn test
37+
run: yarn test --coverage
3838
env:
3939
CI: true
40-
40+
4141
- name: Test Coverage
42-
run: bash <(curl -s https://codecov.io/bash) -f coverage/lcov.info
42+
run: codecov -f coverage/lcov.info
4343
env:
4444
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
4545

0 commit comments

Comments
 (0)