fbmobile/.forgejo/workflows/build.yaml
Renovate Bot a288282d34
Some checks failed
renovate/artifacts Artifact file update failure
/ build (push) Failing after 58s
fix(deps): update all minor dependencies
2024-09-04 17:01:55 +00:00

21 lines
759 B
YAML

on: [ push ]
jobs:
build:
runs-on: docker
container:
image: ghcr.io/cirruslabs/flutter:3.24.2
steps:
- name: Prepare requirements
run: |
apt-get update
apt-get install -y nodejs npm git
rm -rf /var/lib/apt/lists/*
- uses: actions/checkout@v3
- name: Build
run: |
flutter doctor
flutter pub get
flutter pub outdated
flutter packages pub run build_runner build --delete-conflicting-outputs
flutter analyze --no-pub --no-current-package lib/
flutter build apk --debug