Skip to content

Commit a988309

Browse files
committed
Adding CI
1 parent 05d2bce commit a988309

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/integration.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
name: Continuous Integration
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
11+
jobs:
12+
test:
13+
name: Test Build
14+
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- name: Checkout the code base
19+
uses: actions/checkout@v3
20+
21+
- name: Setup Node.js
22+
uses: actions/setup-node@v3
23+
with:
24+
node-version: '22'
25+
26+
- name: Install dependencies
27+
run: npm install
28+
29+
- name: Build the project
30+
run: npm run build

0 commit comments

Comments
 (0)