Skip to content

Commit d5f46d7

Browse files
Merge pull request #93 from chrisvogt/fix-dependencies
chore: improve build infrastructure and expand Node compatibility
2 parents 33b1f2a + d2b8e4f commit d5f46d7

File tree

6 files changed

+2956
-2229
lines changed

6 files changed

+2956
-2229
lines changed

.circleci/config.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/workflows/ci.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ main ]
6+
pull_request:
7+
branches: [ main ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
strategy:
14+
matrix:
15+
node-version: [20.x, 22.x, 24.x]
16+
17+
steps:
18+
- uses: actions/checkout@v4
19+
20+
- name: Use Node.js ${{ matrix.node-version }}
21+
uses: actions/setup-node@v4
22+
with:
23+
node-version: ${{ matrix.node-version }}
24+
cache: 'npm'
25+
26+
- name: Install dependencies
27+
run: npm install
28+
29+
- name: Build project
30+
run: npm run build
31+
32+
- name: Run tests
33+
run: npm test

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
legacy-peer-deps=true

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# 3.0.1 - Feb 2026
2+
***(Enhancement)*** Lower Node requirement to >=20 (from >=24) for broader compatibility. Migrate CI from CircleCI to GitHub Actions with multi-version testing. Add .npmrc for streamlined dependency installation.
3+
14
# 3.0.0 - Feb 2026
25
***(Enhancement)*** Update to node 24 and React 18
36

0 commit comments

Comments
 (0)