-
Notifications
You must be signed in to change notification settings - Fork 6
47 lines (40 loc) · 1.3 KB
/
release_validation.yml
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: Release Validation
run-name: Validation for ${{ github.event.pull_request.title }}
on:
pull_request:
branches: [master]
env:
package_dir: ./package
example_dir: ./example
jobs:
validation:
name: Release validation
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Flutter SDK
uses: subosito/flutter-action@v2
with:
channel: "stable"
- name: Flutter versioin
run: flutter --version
- name: Install dependencies
working-directory: ${{ env.package_dir }}
run: flutter pub get
- uses: axel-op/dart-package-analyzer@v3
id: analysis
with:
githubToken: ${{ secrets.GITHUB_TOKEN }}
relativePath: ${{ env.package_dir }}
- uses: fujidaiti/[email protected]
with:
report: ${{ steps.analysis.outputs.json_output }}
min-pub-points: 130
supported-platforms: ios, android, linux, windows, macos, web
- name: Build web app
working-directory: ${{ env.example_dir }}
run: flutter build web --release --base-href "/${{ github.event.repository.name }}/"
- name: Dry publish
working-directory: ${{ env.package_dir }}
run: flutter pub publish --dry-run