-
Notifications
You must be signed in to change notification settings - Fork 13
38 lines (36 loc) · 1.22 KB
/
examples.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
name: examples
on:
push:
branches:
- main
pull_request:
paths:
- ".github/workflows/examples.yaml"
- "examples/**"
# Prevent duplicate runs due to Graphite
# https://graphite.dev/docs/troubleshooting#why-are-my-actions-running-twice
concurrency:
group: ${{ github.repository }}-${{ github.workflow }}-${{ github.ref }}-${{ github.ref == 'refs/heads/main' && github.sha || ''}}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 15
steps:
- name: Git Checkout
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # 4.2.1
- name: Setup Flutter
uses: subosito/flutter-action@f2c4f6686ca8e8d6e6d0f28410eeef506ed66aff # 2.18.0
with:
channel: stable
cache: true
- name: Setup Melos
run: dart pub global activate melos
- name: Get Packages
run: melos bootstrap
- name: Analyze
run: melos exec -c 1 --dir-exists=celest -- flutter analyze --fatal-infos --fatal-warnings
- name: Format
run: melos exec -c 1 --dir-exists=celest -- dart format --set-exit-if-changed .
- name: Build Example
run: melos exec -c 1 --dir-exists=celest -- flutter build web