Skip to content

Commit 89bc8e5

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 6031e71 + 0c597a9 commit 89bc8e5

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/workflows/test.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Run Tests
2+
on:
3+
push:
4+
branches:
5+
- 'main'
6+
pull_request:
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v5
12+
- uses: actions/setup-node@v6
13+
with:
14+
node-version: '24.x'
15+
registry-url: 'https://registry.npmjs.org'
16+
- run: npm ci
17+
- run: npm run build
18+
- run: npm run test

0 commit comments

Comments
 (0)