Skip to content

build(deps-dev): bump @typescript-eslint/eslint-plugin from 6.21.0 to 8.45.0 #124

build(deps-dev): bump @typescript-eslint/eslint-plugin from 6.21.0 to 8.45.0

build(deps-dev): bump @typescript-eslint/eslint-plugin from 6.21.0 to 8.45.0 #124

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: macos-latest
strategy:
matrix:
node-version: [20, 22, 24]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup 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 type check
run: npm run typecheck
- name: Build application
run: npm run build
- name: Test build artifacts
run: |
test -d dist
test -f dist/main.js