We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d037bfa commit ca94898Copy full SHA for ca94898
1 file changed
.github/workflows/ci.yml
@@ -0,0 +1,23 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
+permissions:
9
+ contents: read
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
+ defaults:
15
+ run:
16
+ working-directory: dual-ai-chat
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - uses: actions/setup-node@v4
20
+ with:
21
+ node-version: 22
22
+ - run: npm install
23
+ - run: npm run build
0 commit comments