Skip to content

Commit 98593a3

Browse files
committed
add test workflow
1 parent 8835cd0 commit 98593a3

1 file changed

Lines changed: 18 additions & 0 deletions

File tree

.github/test.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: test
2+
3+
permissions:
4+
contents: read # required for actions/checkout
5+
6+
on:
7+
push:
8+
9+
jobs:
10+
run:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v6
14+
- uses: actions/setup-node@v6
15+
with:
16+
node-version: 24
17+
- run: npm i
18+
- run: npm test

0 commit comments

Comments
 (0)