Skip to content

refactor: address code review feedback in PR #13 #28

refactor: address code review feedback in PR #13

refactor: address code review feedback in PR #13 #28

Workflow file for this run

name: Test
on:
pull_request:
branches:
- '**'
push:
branches:
- '**'
- '!main'
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 24]
steps:
- uses: actions/checkout@v5
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: npm test