Skip to content

Commit 0e30747

Browse files
committed
dev: add missing jest dependency and fix build
1 parent c557562 commit 0e30747

File tree

4 files changed

+2675
-1258
lines changed

4 files changed

+2675
-1258
lines changed

.github/workflows/push_demo.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Setup node
3232
uses: actions/setup-node@v4
3333
with:
34-
node-version: '20.x'
34+
node-version: '24.x'
3535
cache: 'npm'
3636
registry-url: 'https://registry.npmjs.org'
3737
- name: Install dependencies

.github/workflows/validating.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,18 +5,20 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
node: [ '18', '20' ]
8+
node: [ '22', '24', '25' ]
99
name: Node ${{ matrix.node }} test
1010
steps:
11-
- uses: actions/checkout@v3
11+
- uses: actions/checkout@v4
1212
- name: Setup node
13-
uses: actions/setup-node@v3
13+
uses: actions/setup-node@v4
1414
with:
1515
node-version: ${{ matrix.node }}
1616
cache: 'npm'
1717
- name: Install dependencies
1818
run: npm ci
1919
- name: Run linter
2020
run: npm run lint
21+
- name: Run build
22+
run: npm run build
2123
- name: Run test
2224
run: npm run test

0 commit comments

Comments
 (0)