V2wip #401
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |