forked from hpi-studyu/studyu
-
Notifications
You must be signed in to change notification settings - Fork 0
53 lines (48 loc) · 1.16 KB
/
all_packages.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
48
49
50
51
52
53
name: All Packages
on:
push:
paths:
- "app/**"
- "core/**"
- "designer_v2/**"
- "flutter_common/**"
- ".github/workflows/all_packages.yml"
- ".github/workflows/init-workspace/**"
workflow_dispatch:
concurrency:
group: ${{ github.ref }}-all-packages
cancel-in-progress: true
jobs:
analyze:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Init workspace
uses: ./.github/workflows/init-workspace
- name: Run analyze
run: melos run analyze
format:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Init workspace
uses: ./.github/workflows/init-workspace
- name: Run format
run: melos run format:ci
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Init workspace
uses: ./.github/workflows/init-workspace
- name: Run Test
run: melos run test --no-select