Skip to content

Commit 0feab44

Browse files
committed
ci(build): add build test for gitcode
1 parent 2ceee27 commit 0feab44

File tree

3 files changed

+24
-5
lines changed

3 files changed

+24
-5
lines changed

.gitcode/workflows/build.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Build
2+
on:
3+
push:
4+
branches: ["main"]
5+
pull_request:
6+
branches: ["main"]
7+
8+
jobs:
9+
build:
10+
runs-on: euleros-2.10.1
11+
steps:
12+
13+
- name: Use Node.js
14+
15+
with:
16+
node-version: "20.10.0"
17+
- name: Install pnpm
18+
run: npm install -g pnpm@10
19+
- name: Install dependencies
20+
run: cd repo_workspace && pnpm install
21+
- name: Build MateChat
22+
run: cd repo_workspace && pnpm build
23+
- name: Build Playground
24+
run: cd repo_workspace && pnpm playground:build

.github/FUNDING.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/renovate.json5

Lines changed: 0 additions & 4 deletions
This file was deleted.

0 commit comments

Comments
 (0)