chore(deps): bump @angular/router from 14.3.0 to 18.2.3 #16
Workflow file for this run
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
# This is a basic workflow to help you get started with Actions | |
name: CI | |
# Controls when the action will run. | |
on: | |
# Triggers the workflow on push or pull request events | |
push: | |
branches: [master, dev] | |
pull_request: | |
branches: [master, dev] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
# Build and test the code | |
build: | |
# The type of runner that the job will run on | |
runs-on: ubuntu-latest | |
# Steps represent a sequence of tasks that will be executed as part of the job | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v2 | |
- name: Cache | |
uses: actions/[email protected] | |
with: | |
# Cache gradle directories | |
path: | | |
~/.gradle/caches | |
~/.gradle/native | |
~/.gradle/wrapper | |
# Key for restoring and saving the cache | |
key: ${{ runner.os }}-gradle | |
- name: Setup Java | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Setup Android SDK | |
uses: android-actions/setup-android@v2 | |
- name: Fix Android directories | |
run: rm -R /usr/local/lib/android/sdk/build-tools/31.0.0/ && rm -R /usr/local/lib/android/sdk/build-tools/32.0.0/ && rm -R /usr/local/lib/android/sdk/build-tools/33.0.0/ && rm -R /usr/local/lib/android/sdk/build-tools/33.0.1/ | |
- name: Copy aRMT secrets | |
run: 'echo "$SECRET" > src/assets/data/secret.ts' | |
shell: bash | |
env: | |
SECRET: ${{secrets.SECRET_TS}} | |
- name: Copy Google-Services.json | |
run: 'echo "$SECRET" > google-services.json' | |
shell: bash | |
env: | |
SECRET: ${{secrets.GOOGLE_SERVICES_ANDROID}} | |
- name: Install cordova-res | |
run: npm i -g cordova-res | |
- name: Use coturiv/setup-ionic | |
uses: coturiv/setup-ionic@v1 | |
with: | |
java-version: 11 | |
- name: Use coturiv/setup-ionic | |
uses: coturiv/setup-ionic@v1 | |
with: | |
cordova-version: 11 | |
- name: Setup Node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '16' | |
- name: Install app dependencies | |
run: npm install --legacy-peer-deps | |
- name: Run unit tests | |
run: npm run test | |
- name: Build | |
run: | | |
ionic capacitor build android |