Skip to content

Commit d11a498

Browse files
ci: add GitHub Actions workflow to run unit tests
1 parent 5387906 commit d11a498

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Run Unit Tests
2+
3+
on: [push]
4+
5+
jobs:
6+
run-unit-tests:
7+
name: Run Unit Tests
8+
runs-on: ubuntu-latest
9+
10+
steps:
11+
- uses: actions/checkout@v4
12+
13+
- uses: actions/setup-node@v4
14+
with:
15+
node-version: 22
16+
cache: 'npm'
17+
18+
- run: npm ci
19+
20+
- run: npm run test

0 commit comments

Comments
 (0)