-
Notifications
You must be signed in to change notification settings - Fork 51
69 lines (62 loc) · 1.7 KB
/
pana.yml
File metadata and controls
69 lines (62 loc) · 1.7 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
name: pana
on:
pull_request:
branches:
- main
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
stream_video:
runs-on: ubuntu-latest
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v6
- name: 📊 Verify Pana Score
uses: ./.github/actions/pana
with:
working_directory: packages/stream_video
min_score: 130
stream_video_flutter:
runs-on: ubuntu-latest
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v6
- name: 📊 Verify Pana Score
uses: ./.github/actions/pana
with:
working_directory: packages/stream_video_flutter
min_score: 150
stream_video_push_notification:
runs-on: ubuntu-latest
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v6
- name: 📊 Verify Pana Score
uses: ./.github/actions/pana
with:
working_directory: packages/stream_video_push_notification
min_score: 140
stream_video_screen_sharing:
runs-on: ubuntu-latest
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v6
- name: 📊 Verify Pana Score
uses: ./.github/actions/pana
with:
working_directory: packages/stream_video_screen_sharing
min_score: 140
stream_video_noise_cancellation:
runs-on: ubuntu-latest
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v6
- name: 📊 Verify Pana Score
uses: ./.github/actions/pana
with:
working_directory: packages/stream_video_noise_cancellation
min_score: 130