Skip to content

chore(deps-dev): bump @typescript-eslint/parser from 8.3.0 to 8.5.0 #1148

chore(deps-dev): bump @typescript-eslint/parser from 8.3.0 to 8.5.0

chore(deps-dev): bump @typescript-eslint/parser from 8.3.0 to 8.5.0 #1148

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Build & Test
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install npm dependencies
run: npm ci
- name: Run code linting
run: npm run lint
- name: Run code style linting
run: npm run prettier
- name: Run build
run: npm run build
- name: Run unit tests with coverage
run: npm run test:unit:coverage
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v4
with:
flags: unittests # optional
verbose: true # optional (default = false)