We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bba16fd commit e085fbaCopy full SHA for e085fba
.gitcode/workflows/build.yml renamed to .gitcode/workflows/unit-test.yml
@@ -16,9 +16,21 @@ jobs:
16
node-version: "20.10.0"
17
- name: Install pnpm
18
run: npm install -g pnpm@10
19
+
20
- name: Install dependencies
21
run: cd repo_workspace && npm install
22
23
- name: Build MateChat
24
run: cd repo_workspace && npm run build
25
26
- name: Build Playground
27
run: cd repo_workspace && npm run playground:build
28
29
+ - name: Lint
30
+ run: cd repo_workspace && npm run lint
31
32
+ - name: Typecheck
33
+ run: cd repo_workspace && npm run typecheck
34
35
+ - name: Test
36
+ run: cd repo_workspace && npm run test
0 commit comments