anyway/.gitea/workflows/frontend_build-web.yaml
Remy Moll cb33f315a0
Some checks failed
Build web / Build Web (pull_request) Has been cancelled
Build and release APK / Build APK (pull_request) Has been cancelled
Build and push docker image / Build (pull_request) Failing after 1m42s
final building cleanup
2024-05-25 14:19:57 +02:00

35 lines
597 B
YAML

on:
pull_request:
branches:
- main
paths:
- frontend/**
name: Build web
jobs:
build:
name: Build Web
runs-on: ubuntu-latest
steps:
- name: Install prerequisites
run: |
sudo apt-get update
sudo apt-get install -y xz-utils
- uses: actions/checkout@v4
- uses: https://github.com/subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.19.6
cache: true
- run: flutter pub get
working-directory: ./frontend
- run: flutter build web
working-directory: ./frontend