Skip to content

Commit 5c35db9

Browse files
chore: added CI tests
1 parent 8eb6700 commit 5c35db9

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/test.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Run Tests
2+
3+
on: push
4+
5+
jobs:
6+
test:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v4
12+
13+
- name: Setup Node.js LTS
14+
uses: actions/setup-node@v4
15+
with:
16+
node-version: 'lts/*'
17+
18+
- name: Install PNPM
19+
uses: pnpm/action-setup@v4
20+
21+
- name: Install dependencies
22+
run: pnpm install
23+
24+
- name: Run tests
25+
run: pnpm test

0 commit comments

Comments
 (0)