Skip to content

build(deps-dev): bump @typescript-eslint/types from 7.6.0 to 8.1.0 #92

build(deps-dev): bump @typescript-eslint/types from 7.6.0 to 8.1.0

build(deps-dev): bump @typescript-eslint/types from 7.6.0 to 8.1.0 #92

Workflow file for this run

name: Build & Test
on:
push:
branches:
- main
- next
- '*.x'
- '*.x.x'
pull_request:
branches:
- main
- next
- '*.x'
- '*.x.x'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build, Lint & Format
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- 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 Dependencies
run: npm ci
- name: Run Linter
run: npm run lint
- name: Run Prettier
run: npm run format
- name: Build
run: npm run build
- name: Build Tests
run: npm run test:build
unit:
name: Unit Tests
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x, 18.x, 20.x]
steps:
- 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 Dependencies
run: npm ci
- name: Run Tests
run: npm run test -- --coverage
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}
slug: lsndr/eslint-plugin-typescript-inheritance