File tree Expand file tree Collapse file tree 5 files changed +682
-63
lines changed
Expand file tree Collapse file tree 5 files changed +682
-63
lines changed Original file line number Diff line number Diff line change @@ -33,18 +33,11 @@ jobs:
3333 # This runs vitest with coverage enabled
3434 run : yarn test:coverage
3535
36- - name : Upload coverage to Coveralls
37- uses : coverallsapp/github-action@v2
38- with :
39- # AUTOMATIC FOR PUBLIC REPOS:
40- github-token : ${{ secrets.GITHUB_TOKEN }}
41-
42- # REQUIRED FOR PRIVATE REPOS:
43- # repo-token: ${{ secrets.COVERALLS_REPO_TOKEN }}
44-
45- # Optional: Explicitly point to the file if it's not found automatically
46- # path-to-lcov: ./coverage/lcov.info
47- debug : true
36+ - name : Upload to Coveralls
37+ run : yarn coveralls
38+ env :
39+ # REQUIRED: The script needs this to know where to upload
40+ COVERALLS_REPO_TOKEN : ${{ secrets.COVERALLS_REPO_TOKEN }}
4841
4942 - name : Build the library
5043 run : yarn build
Original file line number Diff line number Diff line change 1010 runs-on : ubuntu-latest
1111 permissions :
1212 contents : write # Required to create the GitHub Release
13+ id-token : write # Required for actions/setup-node to authenticate with npm
1314
1415 strategy :
1516 matrix :
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 5151 "test:watch" : " vitest" ,
5252 "test:ui" : " vitest --ui" ,
5353 "test:coverage" : " vitest run --coverage" ,
54+ "coveralls" : " cat ./coverage/lcov.info | coveralls" ,
5455 "lint" : " eslint ." ,
5556 "lint:fix" : " eslint . --fix" ,
5657 "check:prettier" : " prettier -c src/" ,
6970 "@typescript-eslint/parser" : " ^8.46.4" ,
7071 "@vitest/coverage-v8" : " 4.0.9" ,
7172 "@vitest/ui" : " ^4.0.9" ,
73+ "coveralls" : " ^3.1.1" ,
7274 "esdoc" : " ^1.1.0" ,
7375 "esdoc-standard-plugin" : " ^1.0.0" ,
7476 "eslint" : " ^9.39.1" ,
7981 "globals" : " ^16.5.0" ,
8082 "husky" : " ^9.1.7" ,
8183 "lint-staged" : " ^16.2.6" ,
84+ "nyc" : " ^17.1.0" ,
8285 "prettier" : " ^3.6.2" ,
8386 "sqlite3" : " ^5.1.7" ,
8487 "typescript" : " ^5.9.3" ,
You can’t perform that action at this time.
0 commit comments