We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4be2f87 commit e95b96eCopy full SHA for e95b96e
.github/workflows/check.yaml
@@ -3,8 +3,14 @@ name: Daily CI
3
on:
4
schedule:
5
- cron: '0 1 * * *'
6
+
7
workflow_dispatch:
8
9
pull_request:
10
11
+ push:
12
+ branches: [main]
13
14
jobs:
15
daily-build:
16
runs-on: ubuntu-latest
@@ -25,6 +31,18 @@ jobs:
25
31
- name: Install dependencies
26
32
run: pnpm install
27
33
28
- - name: Build Example
34
+ - name: Build Rspack
35
+ run: |
36
+ pnpm build:rspack
37
38
+ - name: Build Rsbuild
39
40
+ pnpm build:rsbuild
41
42
+ - name: Build Rspress
43
44
+ pnpm build:pspress
45
46
+ - name: Build Rsdoctor
29
47
run: |
30
- pnpm build:example
48
+ pnpm build:rsdoctor
0 commit comments