-
Notifications
You must be signed in to change notification settings - Fork 82
47 lines (39 loc) · 1002 Bytes
/
build.yaml
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
name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Dependency install
run: |
npm install @ionic/cli@6.20.4 native-run@1.3.0
npm install
- name: Build Storage Mirror
run: |
cd storage-mirror
npm install
npm run build
- name: Copy environment.ts to environment.prod.ts
run: |
cp src/environments/environment.ts src/environments/environment.prod.ts
- name: Build
run: |
./node_modules/@ionic/cli/bin/ionic build --prod --release
#- name: Test
# run: ./node_modules/@angular/cli/bin/ng test