Skip to content

Commit 0c597a9

Browse files
authored
Add GitHub Actions workflow for running tests
Signed-off-by: Dario Pranjic <96529060+Knerio@users.noreply.github.com>
1 parent a7509dc commit 0c597a9

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: Run Tests
2+
on:
3+
push:
4+
branches:
5+
- 'main'
6+
pull_request:
7+
jobs:
8+
test:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- uses: actions/checkout@v5
12+
- uses: actions/setup-node@v6
13+
with:
14+
node-version: '24.x'
15+
registry-url: 'https://registry.npmjs.org'
16+
- run: npm ci
17+
- run: npm run build
18+
- run: npm run test

0 commit comments

Comments
 (0)