Skip to content

Bump typescript-eslint from 8.16.0 to 8.18.0 #118

Bump typescript-eslint from 8.16.0 to 8.18.0

Bump typescript-eslint from 8.16.0 to 8.18.0 #118

Workflow file for this run

name: Coverage
on: [push]
jobs:
run:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- uses: szenius/set-timezone@v1.2
with:
timezoneLinux: "Europe/Brussels"
- name: Generate coverage report
run: npm run test:coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
directory: ./coverage/
fail_ci_if_error: true
files: ./lcov.info,./lcov-report
flags: unittests
name: codecov-umbrella
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true