-
Notifications
You must be signed in to change notification settings - Fork 84
67 lines (57 loc) · 1.54 KB
/
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [22.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 }}
cache: 'npm' # Enables automatic npm caching
- name: Restore npm Cache
uses: actions/cache@v3
with:
path: ~/.npm
key: npm-${{ runner.os }}-${{ hashFiles('package-lock.json') }}
restore-keys: |
npm-${{ runner.os }}-
- name: Install Dependencies
run: |
npm ci
npm install @ionic/[email protected] [email protected]
- name: Cache Build Artifacts (optional)
uses: actions/cache@v3
with:
path: |
storage-mirror/node_modules
node_modules
key: build-${{ runner.os }}-${{ hashFiles('package-lock.json') }}
restore-keys: |
build-${{ runner.os }}-
- name: Build Storage Mirror
run: |
cd storage-mirror
npm ci
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: |
npx ionic build --prod --release
- name: Run Vitest
run: |
npx vitest --coverage --run