fbmobile/.forgejo/workflows/build.yaml
Renovate Bot e65681046a
Some checks failed
renovate/artifacts Artifact file update failure
/ build (push) Failing after 1m7s
fix(deps): update all minor dependencies
2024-10-19 08:01:17 +00:00

21 lines
759 B
YAML

on: [ push ]
jobs:
build:
runs-on: docker
container:
image: ghcr.io/cirruslabs/flutter:3.24.3
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