Skip to content

Commit 9b09336

Browse files
committed
ci: add build workflow
1 parent 34f55eb commit 9b09336

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
branches: [main]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
strategy:
13+
fail-fast: false
14+
matrix:
15+
package:
16+
- default
17+
- minimal
18+
- react
19+
- react-compiler
20+
- solid
21+
- svelte
22+
- vue
23+
steps:
24+
- name: Setup JS
25+
uses: sxzz/workflows/setup-js@v1
26+
27+
- name: Build
28+
run: pnpm --filter ./${{ matrix.package }} build

0 commit comments

Comments
 (0)