Skip to content

deps(deps-dev): bump @typescript-eslint/eslint-plugin from 6.21.0 to 8.46.0 #96

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

deps(deps-dev): bump @typescript-eslint/eslint-plugin from 6.21.0 to 8.46.0 #96

Workflow file for this run

name: CI
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main, develop ]
jobs:
test:
name: Test and Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22]
steps:
- name: Checkout code
uses: actions/checkout@v5
- 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: Type check
run: npm run typecheck
- name: Type check (strict)
run: npm run typecheck:strict
- name: Lint code
run: npm run lint
- name: Check code formatting
run: npm run format:check
- name: Run tests
run: npm test
- name: Build package
run: npm run build
- name: Upload build artifacts
if: matrix.node-version == 20
uses: actions/upload-artifact@v4
with:
name: build-output
path: |
dist/
package.json
retention-days: 7