-
-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (63 loc) · 1.91 KB
/
Copy pathci.yml
File metadata and controls
77 lines (63 loc) · 1.91 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ci-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
validate-and-build:
runs-on: ubuntu-latest
steps:
- name: Checkout OWD client (workspace deps)
uses: actions/checkout@v4
with:
repository: owdproject/client
path: client
submodules: recursive
- name: Checkout kit-tailwind
uses: actions/checkout@v4
with:
repository: owdproject/kit-tailwind
path: client/packages/kit-tailwind
- name: Checkout kit-primevue
uses: actions/checkout@v4
with:
repository: owdproject/kit-primevue
path: client/packages/kit-primevue
- name: Checkout module-fs
uses: actions/checkout@v4
with:
repository: owdproject/module-fs
path: client/packages/module-fs
- name: Checkout theme-nova
uses: actions/checkout@v4
with:
repository: owdproject/theme-nova
path: client/themes/theme-nova
- name: Overlay this app-debug repo
uses: actions/checkout@v4
with:
path: client/apps/app-debug
- uses: actions/setup-node@v4
with:
node-version: 22
- run: npm i -g --force corepack@latest && corepack enable
- name: Install monorepo dependencies
working-directory: client
run: pnpm install --no-frozen-lockfile
- name: Prepare module and playground
working-directory: client/apps/app-debug
run: pnpm run dev:prepare
- name: Validate module layout
working-directory: client/apps/app-debug
run: pnpm run validate
- name: Generate static playground
working-directory: client/apps/app-debug
run: pnpm run dev:generate
env:
NUXT_APP_BASE_URL: /app-debug/