-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (37 loc) · 1007 Bytes
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: ci
on:
push:
branches:
- main
pull_request:
concurrency:
group: ci-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
with:
build: false
playwright: false
- run: pnpm lint-check
- run: pnpm build
- run: pnpm tsc
- run: pnpm test
- run: npx typedoc
tiny-react:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: pnpm -C packages/tiny-react/examples/server test-e2e
- run: pnpm -C packages/tiny-react/examples/server build
- run: pnpm -C packages/tiny-react/examples/server test-e2e-preview
tiny-refresh:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: ./.github/actions/setup
- run: pnpm -C packages/tiny-refresh/examples/react test-e2e