Skip to content

npm: bump typescript-eslint from 7.18.0 to 8.0.0 #293

npm: bump typescript-eslint from 7.18.0 to 8.0.0

npm: bump typescript-eslint from 7.18.0 to 8.0.0 #293

Workflow file for this run

name: Coverage Workflow
on: [push, pull_request, workflow_dispatch]
jobs:
run:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v4
with:
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
node-version: 20
- name: Clean install
run: npm ci
- name: Run tests and collect coverage
run: npm run test:coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3
env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}