Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@ on:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['20', '22', '24']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run lint
Expand All @@ -27,7 +30,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: '20'
node-version: '24'
cache: 'npm'
- run: npm ci
- run: npm run build
Expand Down
2 changes: 1 addition & 1 deletion docs/update-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ const result = utilFunction(input);

```

## Current Module Status (v4.2.0):
## Current Module Status (v4.4.1):

All 32 public modules complete:
- format, calculate, validate, constants, age, calendar, parse, performance
Expand Down
Loading
Loading