File tree Expand file tree Collapse file tree 1 file changed +17
-3
lines changed
Expand file tree Collapse file tree 1 file changed +17
-3
lines changed Original file line number Diff line number Diff line change @@ -26,12 +26,26 @@ jobs:
2626 - name : Test
2727 run : yarn lint && yarn test
2828
29- # Coverage reporting disabled (coverage command removed due to glob@10 incompatibility).
3029 report-coverage :
31- if : ${{ false }}
3230 runs-on : ubuntu-latest
3331 steps :
34- - run : echo "Coverage reporting disabled"
32+ - name : Checkout
33+ uses : actions/checkout@v4
34+ - name : Setup node
35+ uses : actions/setup-node@v4
36+ with :
37+ node-version : 18.x
38+ cache : yarn
39+ - name : Yarn
40+ run : yarn
41+ - name : Test
42+ run : yarn coverage
43+ - name : Coveralls
44+ uses : coverallsapp/github-action@master
45+ with :
46+ github-token : ${{ secrets.GITHUB_TOKEN }}
47+ env :
48+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
3549
3650 test-as-dependency :
3751 runs-on : ubuntu-latest
You can’t perform that action at this time.
0 commit comments