chore(deps): update dependency typescript to v5.7.3 #1336
Workflow file for this run
This file contains 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
name: Node.js v22 CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js v22 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22.x' | |
- name: Install Node.js dependencies | |
run: npm ci | |
- name: Lint and test | |
run: | | |
npm run lint | |
npm test | |
npm run coverage | |
- name: Upload code coverage to codecov | |
# https://github.com/marketplace/actions/codecov | |
uses: codecov/codecov-action@v5 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: coverage.lcov |