2 parents a6c18ff + 3627741 commit 7350696Copy full SHA for 7350696
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,30 @@
1
+name: CI
2
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches:
7
+ - main
8
9
+permissions:
10
+ contents: read
11
12
+jobs:
13
+ build:
14
+ runs-on: ubuntu-latest
15
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@v4
19
20
+ - name: Setup Node
21
+ uses: actions/setup-node@v4
22
+ with:
23
+ node-version: 20
24
+ cache: npm
25
26
+ - name: Install dependencies
27
+ run: npm ci
28
29
+ - name: Build
30
+ run: npm run build
0 commit comments