-
Notifications
You must be signed in to change notification settings - Fork 0
181 lines (145 loc) · 5.89 KB
/
feature.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
name: Feature
on:
push:
branches: [feature/**/*, feature/*]
jobs:
prepare:
runs-on: ubuntu-latest
name: 'Prepare Feature'
outputs:
branch: ${{ steps.extract_branch.outputs.branch }}
version: ${{ steps.taggerDryRun.outputs.new_tag }}
steps:
- name: Extract branch name
shell: bash
run: echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
id: extract_branch
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 🪐 Patch version for each merge (Dry Run)
id: taggerDryRun
uses: anothrNick/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
WITH_V: true
DEFAULT_BUMP: patch
PRE_RELEASE: true
DRY_RUN: true
- name: 🪐 Output Tag
run: |
echo "${{ steps.taggerDryRun.outputs.new_tag }}"
linting:
needs: [prepare]
runs-on: ubuntu-latest
name: 'Check Format and Linting'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v4
- name: 📦 Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 21
cache: 'npm'
- name: 📦 Install NX-Linux
run: npm install @nx/nx-linux-x64-gnu@latest
- name: 📦 Install dependencies
run: npm install
- name: 🚀 Check Format
run: npx nx format:check
- name: 🚀 Lint Apps
run: npx nx affected:lint --parallel --maxParallel=3 --base=${{ needs.prepare.outputs.branch }}~1 --head=${{ needs.prepare.outputs.branch }}
testing:
needs: [prepare]
runs-on: ubuntu-latest
name: 'Test Apps'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v4
- name: 📦 Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 21
cache: 'npm'
- name: 📦 Install NX-Linux
run: npm install @nx/nx-linux-x64-gnu@latest
- name: 📦 Install dependencies
run: npm install
- name: 🚀 Test Apps
run: npx nx affected:test --passWithNoTests --parallel --maxParallel=3 --base=${{ needs.prepare.outputs.branch }}~1 --head=${{ needs.prepare.outputs.branch }}
- name: 🚀 e2e Apps
run: npx nx affected:e2e --passWithNoTests --parallel --maxParallel=3 --base=${{ needs.prepare.outputs.branch }}~1 --head=${{ needs.prepare.outputs.branch }}
building:
needs: [prepare]
runs-on: ubuntu-latest
name: 'Build Apps'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v4
- name: 📦 Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 21
cache: 'npm'
- name: 📦 Install NX-Linux
run: npm install @nx/nx-linux-x64-gnu@latest
- name: 📦 Install dependencies
run: npm install
- name: 🚀 Build Apps
run: npx nx affected:build --parallel --maxParallel=3 --base=${{ needs.prepare.outputs.branch }}~1 --head=${{ needs.prepare.outputs.branch }}
docker:
needs: [prepare, linting, testing, building]
runs-on: ubuntu-latest
name: 'Publish Docker Image'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v4
- name: 📦 Login into Docker
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: 📦 Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 21
cache: 'npm'
- name: 📦 Install NX-Linux
run: npm install @nx/nx-linux-x64-gnu@latest
- name: 📦 Install dependencies
run: npm install
- name: 🏗 Build Docker Images
run: npx nx affected -t docker-build --base=${{ needs.prepare.outputs.branch }}~1 --head=${{ needs.prepare.outputs.branch }} --parallel --maxParallel=3 --VERSION=${{ needs.prepare.outputs.version }}
- name: 🏗 Push Docker Images
run: npx nx affected -t docker-push --base=${{ needs.prepare.outputs.branch }}~1 --head=${{ needs.prepare.outputs.branch }} --parallel --maxParallel=3 --VERSION=${{ needs.prepare.outputs.version }}
notify:
needs: [docker]
runs-on: ubuntu-latest
name: 'Notify'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: 🪐 Patch version for each merge
id: taggerDryRun
uses: anothrNick/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
WITH_V: true
DEFAULT_BUMP: patch
PRE_RELEASE: true
- name: API Alerts Notify
uses: apialerts/notify-action@v1
with:
api_key: ${{ secrets.API_ALERTS_KEY }}
message: '🚢 Feature - New Patch Released (${{ steps.taggerDryRun.outputs.new_tag }})'
tags: 'Azkaban,Feature'
link: 'https://api.toxictoast.de/api'