Upgrade to TypeScript 6 #12
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This workflow reports code coverage from the supported Node.js release to Coveralls. | |
| name: Coverage | |
| permissions: | |
| contents: read | |
| on: [push, pull_request] | |
| jobs: | |
| coverage: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - name: Use Node.js 26.x | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: 26.x | |
| - run: npm ci | |
| - run: npm run cover | |
| - uses: coverallsapp/github-action@v2 | |
| with: | |
| file: coverage/lcov.info |