-
Notifications
You must be signed in to change notification settings - Fork 26
47 lines (39 loc) · 1.21 KB
/
samples_presubmit.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
39
40
41
42
43
44
45
46
47
name: Samples Presubmit
on:
workflow_dispatch: {}
pull_request:
branches: [ master ]
paths:
- .github/workflows/samples_presubmit.yaml
- samples/**
jobs:
prepare:
if: github.actor != 'forus-labs-token-mint'
name: Prepare PR for review
runs-on: ubuntu-latest
defaults:
run:
working-directory: samples
steps:
- uses: tibdex/github-app-token@v2
id: generate-token
with:
app_id: ${{ secrets.TOKEN_MINT_APP_ID }}
private_key: ${{ secrets.TOKEN_MINT_PRIVATE_KEY }}
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
with:
token: ${{ steps.generate-token.outputs.token }}
ref: ${{ github.event.pull_request.head.ref }}
- uses: subosito/[email protected]
with:
cache: true
- uses: dart-lang/[email protected]
- run: flutter pub get
- run: flutter pub global activate import_sorter
- run: flutter pub global run import_sorter:main
- run: flutter pub run build_runner build --delete-conflicting-outputs
- run: dart fix --apply
- uses: EndBug/add-and-commit@v9
with:
add: '*'
push: true