-
Notifications
You must be signed in to change notification settings - Fork 24
87 lines (81 loc) · 2.04 KB
/
ci-pr.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
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
on:
push:
paths-ignore:
- 'documentation/**'
branches: [develop]
name: Build
jobs:
# JOB to run change detection
changes:
runs-on: ubuntu-latest
# Set job outputs to values from filter step
outputs:
common: ${{ steps.filter.outputs.common }}
config: ${{ steps.filter.outputs.config }}
mailer: ${{ steps.filter.outputs.mailer }}
schematics: ${{ steps.filter.outputs.schematics }}
steps:
- uses: dorny/paths-filter@v2
id: filter
with:
filters: |
common:
- 'packages/common/**'
config:
- 'packages/config/**'
mailer:
- 'packages/mailer/**'
schematics:
- 'packages/schematics/**'
# JOB to build common code
common:
needs: changes
if: ${{ needs.changes.outputs.common == 'true' }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: build
run: |
cd packages/common
yarn install
yarn run build
# JOB to build config code
config:
needs: changes
if: ${{ needs.changes.outputs.config == 'true' }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: build
run: |
cd packages/config
yarn install
yarn run build
# JOB to build mailer code
mailer:
needs: changes
if: ${{ needs.changes.outputs.mailer == 'true' }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: build
run: |
cd packages/mailer
yarn install
yarn run build
# JOB to build schematics code
schematics:
needs: changes
if: ${{ needs.changes.outputs.schematics == 'true' }}
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: build
run: |
cd packages/schematics
yarn install
yarn run build