Skip to content

fix(deps): update all dependencies #117

fix(deps): update all dependencies

fix(deps): update all dependencies #117

Workflow file for this run

name: CI
#
# Documentation:
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#
on: [push, pull_request]
env:
CI: true
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Ionic
uses: coturiv/setup-ionic@v1
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
- name: Build apk
run: ionic cordova build android --prod
- name: Upload artifact
uses: actions/upload-artifact@v4.3.4
with:
name: app-debug
path: ./platforms/android/app/build/outputs/apk/debug/app-debug.apk