File tree 2 files changed +7
-8
lines changed
2 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 10
10
steps :
11
11
- uses : actions/checkout@v4
12
12
- uses : oven-sh/setup-bun@v1
13
- - uses : actions/cache@v3
13
+ - uses : actions/cache@v4
14
14
with :
15
15
path : ~/.bun
16
16
key : ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
Original file line number Diff line number Diff line change @@ -12,16 +12,15 @@ jobs:
12
12
steps :
13
13
- uses : actions/checkout@v4
14
14
- uses : oven-sh/setup-bun@v1
15
- - uses : actions/cache@v3
15
+ - uses : actions/cache@v4
16
16
with :
17
17
path : ~/.bun
18
18
key : ${{ runner.os }}-bun-${{ hashFiles('**/bun.lock') }}
19
19
restore-keys : |
20
20
${{ runner.os }}-bun-${{ github.ref }}
21
21
- run : bun install
22
- - run : bun test --coverage
23
- #
24
- # - name: Upload coverage to Codecov
25
- # uses: codecov/codecov-action@v3
26
- # with:
27
- # directory: ./coverage
22
+ - run : bun test --coverage --coverage-reporter=lcov
23
+ - name : Upload coverage to Codecov
24
+ uses : codecov/codecov-action@v4
25
+ with :
26
+ token : ${{ secrets.CODECOV_TOKEN }} # required
You can’t perform that action at this time.
0 commit comments