Skip to content

Commit 7f6c719

Browse files
committed
add test workflow
1 parent c25a9a6 commit 7f6c719

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/main.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
on:
2+
push:
3+
branches:
4+
- main
5+
pull_request:
6+
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v4
12+
- uses: actions/setup-node@v4
13+
- uses: pnpm/action-setup@v4
14+
with:
15+
version: 10
16+
- run: pnpm install
17+
- run: pnpm build
18+
- run: pnpm test

0 commit comments

Comments
 (0)