Skip to content

Commit 0314f92

Browse files
ci: Add basic GH Actions worfklow to test & build project.
1 parent 0898e2f commit 0314f92

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/build.yml

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: Test & Build
2+
3+
on:
4+
push:
5+
branches: '*'
6+
pull_request:
7+
branches: '*'
8+
9+
jobs:
10+
test-build:
11+
name: Run tests and build project
12+
runs-on: ubuntu-latest
13+
steps:
14+
- uses: actions/checkout@v4
15+
- run: npm ci
16+
- run: npm run build

0 commit comments

Comments
 (0)