-
Notifications
You must be signed in to change notification settings - Fork 3
165 lines (134 loc) · 5.07 KB
/
main-v2.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
name: Release Workflow v2
on:
# manual trigger
workflow_dispatch:
inputs:
# main branch name
e2e-tests:
description: 'Do e2e tests'
required: true
default: false
type: boolean
# Needed for nx-set-shas when run on the main branch
permissions:
actions: read
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
run-name: ${{ github.ref == 'refs/heads/main' && 'Prod' || 'Beta' }} release ${{ inputs.e2e-tests && 'with E2E tests' || '' }} - ${{ github.run_number }}
jobs:
main:
runs-on: ubuntu-latest
outputs:
NEW_VERSION: ${{ steps.create_release.outputs.new_version }}
steps:
- uses: actions/checkout@v4
- name: Merge development -> main
uses: devmasx/merge-branch@master
if: github.ref == 'refs/heads/main'
with:
type: now
from_branch: develop
target_branch: main
message: 'chore(merge): merge develop into main'
github_token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Pull main
if: github.ref == 'refs/heads/main'
run: git pull origin main
- name: set SHAs
run: |
# run code only on main branch
TAG_VERSION=$(git describe --first-parent --match 'v*' --abbrev=0 --tags)
echo "Found tag: $TAG_VERSION"
LAST_TAG_HASH=$(git rev-list -n 1 $TAG_VERSION)
echo "Found hash: $LAST_TAG_HASH"
# Set NX_BASE to the last tag
echo "NX_BASE=$LAST_TAG_HASH" >> $GITHUB_ENV
# Set NX_HEAD to the current commit
echo "NX_HEAD=origin/${{github.ref_name}}" >> $GITHUB_ENV
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
# - run: bun nx-cloud start-ci-run --distribute-on=".nx/workflows/dynamic-changesets.yaml"
- run: bun install --no-cache
- run: bun nx affected -t lint test build -c ci
- name: Run Playwright tests
run: bun nx affected --parallel 1 -t e2e-ci
id: run-e2e-tests
if: ${{ inputs.e2e-tests }}
- name: e2e reports
# Always run if the e2e-tests input is true
if: ${{ inputs.e2e-tests && (steps.run-e2e-tests.outcome == 'success' || steps.run-e2e-tests.outcome == 'failure') }}
run: |
echo "Combine all the reports into a single report"
# check if the "blob-reports" root directory exists and if it does, remove it and recreate it
if [ -d "blob-reports" ]; then
rm -rf blob-reports
fi
# create the "blob-reports" root directory
mkdir blob-reports
# copy all the reports into the "blob-reports" root directory
cp apps/**/blob-report/*.zip ./blob-reports
# create nx report
bun playwright merge-reports --reporter=html,github ./blob-reports
## for copy pasting in shell
# bun playwright show-report
- name: coverage reports
run: npx --yes lcov-result-merger 'coverage/**/lcov.info' 'coverage/lcov.info'
- name: Set Git config
run: |
git config --local user.email "[email protected]"
git config --local user.name "Badman Releaser"
# create release on master en develop
- name: Create release
id: create_release
run: node scripts/release.js --dry-run=false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: stop agents
run: bun nx-cloud complete-ci-run
if: always()
- uses: actions/upload-artifact@v3
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
- uses: actions/upload-artifact@v3
if: always()
with:
name: coverage-report
path: coverage/lcov.info
retention-days: 30
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Merge main -> develop
uses: devmasx/merge-branch@master
if: github.ref == 'refs/heads/main'
with:
type: now
from_branch: main
target_branch: develop
message: 'chore(merge): merge main into develop'
github_token: ${{ secrets.GITHUB_TOKEN }}
# deploy the new packages
- name: Deploy to Prod
if: github.ref == 'refs/heads/main'
run: bun nx affected -t deploy --no-agents
env:
API_HOOK: ${{ secrets.PROD_API_HOOK }}
WORKER_SYNC_HOOK: ${{ secrets.PROD_WORKER_SYNC_HOOK }}
WORKER_RANKING_HOOK: ${{ secrets.PROD_WORKER_RANKING_HOOK }}
- name: Deploy to Beta
run: bun nx affected -t deploy --no-agents
env:
API_HOOK: ${{ secrets.BETA_API_HOOK }}
WORKER_SYNC_HOOK: ${{ secrets.BETA_WORKER_SYNC_HOOK }}
WORKER_RANKING_HOOK: ${{ secrets.BETA_WORKER_RANKING_HOOK }}