-
Notifications
You must be signed in to change notification settings - Fork 139
113 lines (85 loc) · 2.46 KB
/
npm-build.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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
name: Build Angular applications
on:
push:
branches: [ master ]
pull_request:
branches: [ master, v82, v90, v92 ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
node-version: [14.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install packages
working-directory: ./imxweb
run: npm install
- name: Build qbm
working-directory: ./imxweb
run: npm run build qbm
- name: Build qer
working-directory: ./imxweb
run: npm run build qer
- name: Build tsb
working-directory: ./imxweb
run: npm run build tsb
- name: Build att
working-directory: ./imxweb
run: npm run build att
- name: Build rms
working-directory: ./imxweb
run: npm run build rms
- name: Build aad
working-directory: ./imxweb
run: npm run build aad
- name: Build aob
working-directory: ./imxweb
run: npm run build aob
- name: Build uci
working-directory: ./imxweb
run: npm run build uci
- name: Build cpl
working-directory: ./imxweb
run: npm run build cpl
- name: Build dpr
working-directory: ./imxweb
run: npm run build dpr
- name: Build rmb
working-directory: ./imxweb
run: npm run build rmb
- name: Build rps
working-directory: ./imxweb
run: npm run build rps
- name: Build o3t
working-directory: ./imxweb
run: npm run build o3t
- name: Build olg
working-directory: ./imxweb
run: npm run build olg
- name: Build hds
working-directory: ./imxweb
run: npm run build hds
- name: Build pol
working-directory: ./imxweb
run: npm run build pol
- name: Build qer-app-portal
working-directory: ./imxweb
run: npm run build qer-app-portal
- name: Build qbm-app-landingpage
working-directory: ./imxweb
run: npm run build qbm-app-landingpage
- name: Build qer-app-operationssupport
working-directory: ./imxweb
run: npm run build qer-app-operationssupport
- name: Build qer-app-pwdportal
working-directory: ./imxweb
run: npm run build qer-app-pwdportal
- name: Build custom-app
working-directory: ./imxweb
run: npm run build custom-app