Skip to content

build(deps-dev): bump typescript from 5.9.3 to 6.0.2 #19

build(deps-dev): bump typescript from 5.9.3 to 6.0.2

build(deps-dev): bump typescript from 5.9.3 to 6.0.2 #19

Workflow file for this run

name: Coverage
on:
push:
branches:
- main
- master
pull_request:
branches:
- main
- master
jobs:
coverage:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Use Node.js 20.x
uses: actions/setup-node@v6
with:
node-version: 20.x
cache: npm
- name: Install dependencies
run: npm install
- name: Run tests with coverage
run: npm run test:coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./coverage/lcov.info
fail_ci_if_error: false
verbose: true