File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,11 +13,11 @@ jobs:
1313 strategy :
1414 fail-fast : true
1515 matrix :
16- node-version : [22, 24]
16+ node-version : [20, 22, 24]
1717
1818 steps :
1919 - name : Checkout repository
20- uses : actions/checkout@v4
20+ uses : actions/checkout@v6
2121 with :
2222 fetch-depth : 1
2323
2929 run : bun install
3030
3131 - name : Run the tests with coverage
32- run : bun test --coverage-junit --coverage
32+ run : |
33+ bun test --coverage-junit --coverage --reporter-outfile=coverage.xml --reporter=junit
3334
3435 - name : Upload failed test results to Codecov
3536 if : ${{ !cancelled() }}
3839 token : ${{ secrets.CODECOV_TOKEN }}
3940
4041 - name : Upload coverage to Codecov
41- uses : codecov/codecov-action@v4
42+ uses : codecov/codecov-action@v5
4243 with :
4344 token : ${{ secrets.CODECOV_TOKEN }}
45+ files : coverage.xml
46+ report_type : coverage
47+ disable_telem : true
You can’t perform that action at this time.
0 commit comments