Skip to content

Commit 987cfd9

Browse files
committed
ci: add basic CI test workflow
1 parent 4bd1005 commit 987cfd9

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

.github/workflows/test.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: All Tests
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v4
11+
- name: Set up PNPM
12+
run: corepack enable
13+
- name: Set up Node.js
14+
uses: actions/setup-node@v4
15+
with:
16+
node-version: 22.x
17+
cache: "pnpm"
18+
- run: pnpm install
19+
20+
- run: pnpm run test

0 commit comments

Comments
 (0)