Skip to content

chore(deps): bump meta from 1.18.2 to 1.18.3 in /packages/aura_core #28

chore(deps): bump meta from 1.18.2 to 1.18.3 in /packages/aura_core

chore(deps): bump meta from 1.18.2 to 1.18.3 in /packages/aura_core #28

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze-and-test:
name: Analyze & Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
- name: Install dependencies
run: flutter pub get
- name: Check formatting
run: dart format --set-exit-if-changed lib/ test/ packages/
- name: Analyze
run: flutter analyze
- name: Run app tests
run: flutter test
- name: Run aura_core tests
working-directory: packages/aura_core
run: dart test
build-android:
name: Build Android APK
runs-on: ubuntu-latest
needs: analyze-and-test
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 17
- uses: subosito/flutter-action@v2
with:
channel: stable
cache: true
- name: Install dependencies
run: flutter pub get
- name: Build APK
run: flutter build apk --release
- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: aura-release-apk
path: build/app/outputs/flutter-apk/app-release.apk