Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reports CI #221

Merged
merged 37 commits into from
Dec 11, 2023
Merged
Changes from 1 commit
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
b4bd447
add client switch
softmarshmallow Jun 19, 2023
f3b910d
wip - adding progress
softmarshmallow Jun 19, 2023
a052fde
mv
softmarshmallow Jun 19, 2023
00b74a4
add report bin cli
softmarshmallow Jun 19, 2023
b023e5a
optional env config
softmarshmallow Jun 19, 2023
1addc91
fix reports
softmarshmallow Jun 19, 2023
97b99b3
add ci reports
softmarshmallow Jun 19, 2023
5672674
add codetest report workflow
softmarshmallow Jun 19, 2023
3252154
update uses
softmarshmallow Jun 19, 2023
867c1b4
fix path resolution
softmarshmallow Jun 19, 2023
553bb58
split
softmarshmallow Jun 19, 2023
9975368
Update Bucket name
softmarshmallow Jun 19, 2023
0f0dfee
split node report
softmarshmallow Jun 19, 2023
c14b7bd
Merge branch 'wip' of https://github.com/gridaco/designto-code into wip
softmarshmallow Jun 19, 2023
ee6c494
split file report
softmarshmallow Jun 19, 2023
9a7ef88
add multi page queue support for screenshot worker
softmarshmallow Jun 20, 2023
b946904
faster report generation
softmarshmallow Jun 20, 2023
efc6789
even faster report generation with nested concurrency and direct scre…
softmarshmallow Jun 20, 2023
a5906d6
improved logging & concurrency adjustment
softmarshmallow Jun 20, 2023
2f04d10
action steps split
softmarshmallow Jun 20, 2023
88a43e5
split files
softmarshmallow Jun 20, 2023
cc94038
split
softmarshmallow Jun 20, 2023
c496ea8
adjust pupeteer concurrency and performance benchmark test
softmarshmallow Jun 21, 2023
376ba3b
add multiple workers for better performance
softmarshmallow Jun 21, 2023
27acf27
opt
softmarshmallow Jul 5, 2023
cb5648e
update samples
softmarshmallow Jul 5, 2023
7dfa980
Merge branch 'main' of https://github.com/gridaco/designto-code into wip
softmarshmallow Jul 7, 2023
f8ba05f
add report ci modes
softmarshmallow Jul 7, 2023
5e786a1
update dest and trigger
softmarshmallow Jul 7, 2023
97a866a
update dirs
softmarshmallow Jul 7, 2023
7f608ac
fix json
softmarshmallow Jul 7, 2023
44d82c3
add comment
softmarshmallow Jul 7, 2023
1ea3605
update comment
softmarshmallow Jul 7, 2023
2f18e73
fix comment
softmarshmallow Jul 7, 2023
f98f10c
fix comment
softmarshmallow Jul 7, 2023
7778ba3
fix comment
softmarshmallow Jul 7, 2023
4091531
trigger ci
softmarshmallow Nov 10, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
optional env config
softmarshmallow committed Jun 19, 2023
commit b023e5a8752fedea341f2b16ecb3d71a2438ff56
11 changes: 6 additions & 5 deletions testing/report/report.config.js
Original file line number Diff line number Diff line change
@@ -9,9 +9,10 @@ const { OUTDIR, LOCAL_ARCHIVE_FILES, LOCAL_ARCHIVE_IMAGES } = process.env;
module.exports = {
sample: path.join(__dirname, "../../data/figma-archives/prod/meta.json"),
outDir: OUTDIR,
localarchive: {
files: LOCAL_ARCHIVE_FILES,
images: LOCAL_ARCHIVE_IMAGES,
},
skipIfReportExists: true,
localarchive: !!LOCAL_ARCHIVE_FILES &&
!!LOCAL_ARCHIVE_IMAGES && {
files: LOCAL_ARCHIVE_FILES,
images: LOCAL_ARCHIVE_IMAGES,
},
skipIfReportExists: false,
};