-
Notifications
You must be signed in to change notification settings - Fork 12
130 lines (121 loc) · 4.14 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
name: Pull Request Checker
on:
pull_request:
permissions: write-all
jobs:
start:
name: Test [Dev Mode]
strategy:
matrix:
node-version: [18.x, 20.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Cache pnpm modules
uses: actions/cache@v4
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@v4
with:
version: latest
run_install: false
- name: Install Dependencies
run: |
pnpm i --no-optional
- name: Start MongoDB
uses: supercharge/mongodb-github-action@v1.10.0
with:
mongodb-version: 4.4
- name: Start Redis
uses: supercharge/redis-github-action@1.7.0
with:
redis-version: 6
- name: Start project & test
run: |
nohup pnpm run dev > /dev/null 2>&1 &
pid=$!
sleep 60 # wait for server to start
bash ./scripts/workflow/test-request.sh pid=$pid dev
build:
name: Build & Upload [Bundle Mode]
needs: start
strategy:
matrix:
node-version: [18.x, 20.x]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Cache pnpm modules
uses: actions/cache@v4
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@v4
with:
version: latest
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@v4
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:
name: Test [Bundle Mode]
needs: build
strategy:
matrix:
node-version: [18.x, 20.x]
os: ['ubuntu-latest']
runs-on: ${{ matrix.os }}
steps:
- name: Download Artifact
uses: actions/download-artifact@v4
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.10.0
with:
mongodb-version: 4.4
- name: Start Redis
uses: supercharge/redis-github-action@1.7.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 ./
cd ./out
# wget https://raw.githubusercontent.com/mogland/core/main/scripts/workflow/test-server.sh -O test-server.sh
wget https://raw.githubusercontent.com/${{ github.repository }}/${{ github.sha }}/scripts/workflow/test-server.sh -O test-server.sh
wget https://raw.githubusercontent.com/${{ github.repository }}/${{ github.sha }}/scripts/workflow/test-request.sh -O test-request.sh
bash test-server.sh