-
Notifications
You must be signed in to change notification settings - Fork 12
182 lines (170 loc) · 6.62 KB
/
pull.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
182
name: Pull Request Checker
on:
pull_request:
jobs:
build:
strategy:
matrix:
node-version: [16.x, 18.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Cache pnpm modules
uses: actions/cache@v3
env:
cache-name: cache-pnpm-modules
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-${{ matrix.node-version }}-
- uses: pnpm/action-setup@v2.2.4
with:
version: 8.x
run_install: false
- name: Install Dependencies
run: |
pnpm i --no-optional
- name: Build project
run: |
npm run build
npm run bundle
cp ecosystem.bundle.config.js out/ecosystem.bundle.config.js
zip -r mog-core-bundle-${{ runner.os }}.zip out/
- name: Upload
uses: actions/upload-artifact@v3
with:
path: ./mog-core-bundle-${{ runner.os }}.zip
name: PR-#${{ github.event.pull_request.number }}-mog-core-bundle-${{ runner.os }}-${{ matrix.node-version }}.zip
test:
needs: build
strategy:
matrix:
node-version: [16.x, 18.x]
os: ['ubuntu-latest']
runs-on: ${{ matrix.os }}
steps:
- name: Download Artifact
uses: actions/download-artifact@v3
with:
name: PR-#${{ github.event.pull_request.number }}-mog-core-bundle-${{ runner.os }}-${{ matrix.node-version }}.zip
path: ./build
- name: Start MongoDB
uses: supercharge/mongodb-github-action@v1.9.0
with:
mongodb-version: 4.4
- name: Start Redis
uses: supercharge/redis-github-action@1.5.0
with:
redis-version: 6
- name: Test Bundle Server
id: test_bundle
# continue-on-error: true
run: |
unzip ./build/mog-core-bundle-Linux.zip -d ./
wget https://raw.githubusercontent.com/mogland/core/main/scripts/workflow/test-server.sh -O test-server.sh
bash test-server.sh
# - name: Reply PR Failed (if not draft PR)
# if: ${{ failure() && github.event.pull_request.draft == false }}
# uses: peter-evans/create-or-update-comment@v2
# with:
# issue-number: ${{ github.event.pull_request.number }}
# body: |
# Hi, @${{ github.event.pull_request.user.login }}. Test **failed** on ${{ matrix.os }} with Node.js ${{ matrix.node-version }}.
# - OS: ${{ matrix.os }}
# - Node.js: ${{ matrix.node-version }}
# - MongoDB: 4.4
# - Redis: 6
# - Test Result: ${{ steps.test_bundle.outcome }}
# - Commit: ${{ github.event.pull_request.head.sha }}
# - name: Reply PR Success
# if: ${{ success() && github.event.pull_request.draft == false }}
# uses: peter-evans/create-or-update-comment@v2
# with:
# issue-number: ${{ github.event.pull_request.number }}
# body: |
# Hi, ${{ github.event.pull_request.user.login }}. Test **passed** on ${{ matrix.os }} with Node.js ${{ matrix.node-version }}.
# - OS: ${{ matrix.os }}
# - Node.js: ${{ matrix.node-version }}
# - MongoDB: 4.4
# - Redis: 6
# - Test Result: ${{ steps.test_bundle.outcome }}
# - Commit: ${{ github.event.pull_request.head.sha }}
# You can request a review from @mogland/developers. **Thanks for your contribution!**
- name: Add ci-passed label
if: ${{ success() && github.event.pull_request.draft == false }}
uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['ci-passed']
})
- name: Remove ci-failed label
if: ${{ success() && github.event.pull_request.draft == false }}
uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const labels = await github.rest.issues.listLabelsOnIssue({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo
})
const label = labels.data.find(label => label.name === 'ci-failed')
if (label) {
github.rest.issues.removeLabel({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
name: label.name
})
}
- name: Add ci-failed label
if: ${{ failure() && github.event.pull_request.draft == false }}
uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const labels = await github.rest.issues.listLabelsOnIssue({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo
})
const label = labels.data.find(label => label.name === 'ci-failed')
if (!label) {
github.rest.issues.addLabels({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
labels: ['ci-failed']
})
}
- name: Remove ci-passed label
if: ${{ failure() && github.event.pull_request.draft == false }}
uses: actions/github-script@v6
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const labels = await github.rest.issues.listLabelsOnIssue({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo
})
const hasPassedLabel = labels.data.some(label => label.name === 'ci-passed')
if (hasPassedLabel) {
github.rest.issues.removeLabel({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
name: 'ci-passed'
})
}