Skip to content

Commit a9fa5e5

Browse files
committed
Run build & tests in GHA
1 parent 6294aa2 commit a9fa5e5

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CI
2+
on: [push, pull_request]
3+
jobs:
4+
build:
5+
name: Build & test
6+
runs-on: ubuntu-latest
7+
steps:
8+
- uses: actions/checkout@v4
9+
10+
- uses: actions/setup-node@v4
11+
with:
12+
node-version: 24
13+
14+
- run: npm ci
15+
- run: npm run build
16+
- run: npm test

0 commit comments

Comments
 (0)