Skip to content

initial modernization migration #10

initial modernization migration

initial modernization migration #10

Workflow file for this run

name: check
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
types:
- synchronize
jobs:
build-and-test:
name: Build & Test
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node-version: [20, 22, 24]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- name: Checkout repository
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: Lint
run: npm run lint
- name: Build
run: npm run build
- name: Test with Coverage
run: npm run test:coverage