Skip to content

Commit 56dfcf1

Browse files
committed
ci: add test workflow on node lts
1 parent a81598b commit 56dfcf1

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: test
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
8+
jobs:
9+
test:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v6
13+
- uses: actions/setup-node@v6
14+
with:
15+
node-version: lts/*
16+
cache: npm
17+
- run: npm ci
18+
- run: npm test

0 commit comments

Comments
 (0)