-
Notifications
You must be signed in to change notification settings - Fork 7
106 lines (96 loc) · 3.13 KB
/
native_image_cropper_web.yaml
File metadata and controls
106 lines (96 loc) · 3.13 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
name: native_image_cropper_web
on:
pull_request:
paths:
- 'native_image_cropper_web/**'
- '.github/workflows/native_image_cropper_web.yaml'
push:
branches:
- main
paths:
- 'native_image_cropper_web/**'
- '.github/workflows/native_image_cropper_web.yaml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
defaults:
run:
working-directory: native_image_cropper_web
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup asdf
uses: asdf-vm/actions/setup@v4
- name: Cache asdf
uses: actions/cache@v5
with:
path: |
~/.asdf/installs
~/.asdf/plugins
~/.asdf/shims
key: ${{ runner.os }}-asdf-${{ hashFiles('.tool-versions') }}
restore-keys: ${{ runner.os }}-asdf-
- name: Install asdf
uses: asdf-vm/actions/install@v4
# See https://github.com/asdf-vm/actions/issues/445
if: steps.cache-asdf.outputs.cache-hit != 'true'
- name: Reshim asdf
run: asdf reshim
- name: Cache flutter dependencies
uses: actions/cache@v5
with:
path: |
~/.pub-cache
native_image_cropper/.dart_tool/
key: ${{ runner.os }}-flutter-web${{ hashFiles('native_image_cropper_web/example/pubspec.lock') }}
restore-keys: ${{ runner.os }}-flutter-web-
- name: Install dependencies
run: flutter pub get
- name: Format code
run: dart format --set-exit-if-changed .
- name: Analyze code
run: flutter analyze
- name: Run code metrics
run: dart run dart_code_linter:metrics analyze . --set-exit-on-violation-level=warning
pana:
defaults:
run:
working-directory: native_image_cropper_web
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup asdf
uses: asdf-vm/actions/setup@v4
- name: Cache asdf
uses: actions/cache@v5
with:
path: |
~/.asdf/installs
~/.asdf/plugins
~/.asdf/shims
key: ${{ runner.os }}-asdf-${{ hashFiles('.tool-versions') }}
restore-keys: ${{ runner.os }}-asdf-
- name: Install asdf
uses: asdf-vm/actions/install@v4
# See https://github.com/asdf-vm/actions/issues/445
if: steps.cache-asdf.outputs.cache-hit != 'true'
- name: Reshim asdf
run: asdf reshim
- name: Cache flutter dependencies
uses: actions/cache@v5
id: flutter_cache
with:
path: |
native_image_cropper_web/.dart_tool/
~/.pub-cache/
key: ${{ runner.os }}-flutter-web${{ hashFiles('native_image_cropper_web/example/pubspec.lock') }}
restore-keys: ${{ runner.os }}-flutter-web-
- name: Install Dependencies
run: |
flutter pub get
echo $GITHUB_PATH:$HOME/.pub-cache/bin >> $GITHUB_PATH
flutter pub global activate pana
- name: Verify Pub Score
run: ../tool/verify_pub_score.sh