Skip to content

Merge branch 'main' into fetch-testexecution-status-from-c3 #291

Merge branch 'main' into fetch-testexecution-status-from-c3

Merge branch 'main' into fetch-testexecution-status-from-c3 #291

Workflow file for this run

name: Test Frontend
on: [push]
# Cancel inprogress runs if new commit pushed
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
runs-on: [self-hosted, linux, large]
defaults:
run:
working-directory: frontend
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.13.0'
channel: 'stable'
- run: flutter pub get
- run: flutter pub run build_runner build
- run: flutter analyze
- run: flutter test
- run: flutter build web