forked from ma3a/SDH-PlayTime
-
Notifications
You must be signed in to change notification settings - Fork 0
164 lines (129 loc) · 5 KB
/
build-merge-request.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
name: Create PR File and Upload as Artifact
on:
pull_request:
types: [opened, synchronize, reopened, closed]
jobs:
check:
runs-on: ubuntu-20.04
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Install Dependencies
run: pnpm install
- name: TypeScript Check
run: pnpm tsc --noEmit
- name: Check formatting
run: pnpm biome format
- name: Check linting
run: pnpm biome lint
- name: Setup bun
uses: oven-sh/setup-bun@v2
- name: Testing
run: bun test
create_merge_request_artifact:
needs: check
runs-on: ubuntu-20.04
permissions:
contents: write
pull-requests: write
repository-projects: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
- name: Get Package Version
run: echo "PACKAGE_VERSION=$(node -p "require('./package.json').version")" >> $GITHUB_ENV
- name: Get Commit Hash
run: echo "COMMIT_HASH=$(git rev-parse --short "$GITHUB_SHA")" >> $GITHUB_ENV
- name: Install Frontend Dependencies
run: pnpm install
- name: Build plugin
uses: actions/github-script@v7
env:
release_id: ${{ needs.create-release.outputs.release_id }}
release_tag: ${{ needs.create-release.outputs.tag }}
with:
script: |
const fs = require("fs");
const child_process = require("child_process");
const path = require("path");
const includeInBuild = [
"plugin.json",
"package.json",
"main.py",
"README.md",
"LICENSE"
];
function copyDirRecursive(parentPath, contents, dest) {
for (const file of contents) {
const fileName = file.name;
const srcPath = path.join(cwdPath, parentPath, fileName);
const destPath = path.join(cwdPath, dest, fileName);
if (fs.lstatSync(srcPath).isDirectory()) {
const dirContents = fs.readdirSync(srcPath, { withFileTypes: true });
const dirDestPath = path.join(dest, fileName);
fs.mkdirSync(dirDestPath, { recursive: true });
copyDirRecursive(path.join(parentPath, fileName), dirContents, dirDestPath);
} else {
fs.copyFileSync(srcPath, destPath);
}
}
}
const cwdPath = path.resolve(process.cwd());
// * build the plugin with `pnpm build`
child_process.execSync("pnpm build");
// * once finished, make folder with all files in includeInBuild
const bundleWrapperPath = path.join(cwdPath, "bundle");
const bundlePath = path.join(bundleWrapperPath, "SDH-PlayTime");
fs.mkdirSync(bundlePath, { recursive: true });
fs.mkdirSync(path.join(bundlePath, "dist"));
for (const fileToInclude of includeInBuild) {
const srcPath = path.join(cwdPath, fileToInclude);
const destPath = path.join(bundlePath, fileToInclude);
fs.copyFileSync(srcPath, destPath);
}
// * check contents of defaults
const defaultsPath = path.join(cwdPath, "defaults");
if (fs.existsSync(defaultsPath)) {
const defaultContents = fs.readdirSync(defaultsPath, { withFileTypes: true });
copyDirRecursive("defaults", defaultContents, `bundle${path.sep}SDH-PlayTime`);
}
// * check contents of dist
const distPath = path.join(cwdPath, "dist");
if (fs.existsSync(distPath)) {
const distContents = fs.readdirSync(distPath, { withFileTypes: true });
copyDirRecursive("dist", distContents, `bundle${path.sep}SDH-PlayTime${path.sep}/dist`);
}
- name: Upload plugin build as artifact
uses: actions/upload-artifact@v4
id: artifact-upload-step
with:
name: SDH-PlayTime-MR${{ github.event.pull_request.number }}-${{ env.COMMIT_HASH }}
path: ./bundle
- name: Post comment with artifact URL
uses: actions/github-script@v7
with:
script: |
const prNumber = "${{ github.event.pull_request.number }}";
const commentBody = `Build artifact: [SDH-PlayTime-MR${{ github.event.pull_request.number }}-${{ env.COMMIT_HASH }}](${{ steps.artifact-upload-step.outputs.artifact-url }}).`;
const response = await github.rest.issues.createComment({
owner: context.repo.owner,
repo: context.repo.repo,
issue_number: prNumber,
body: commentBody
});