Compare commits

..

2 commits

Author SHA1 Message Date
8925f3da6d
WIP: refactor: port to JS
Some checks failed
/ check (treefmt) (push) Successful in 4s
/ report-size (push) Failing after 4s
/ report-download-check (push) Has been skipped
This should hopefully reduce the complexity of the action
2025-07-11 17:54:10 +02:00
1b14f63169
fix(comparison): create the old report in the PWD
All checks were successful
/ check (treefmt) (push) Successful in 3s
/ report-size (push) Successful in 2s
/ report-download-check (push) Successful in 0s
We were creating it in a temp dir instead.
2025-07-11 17:48:40 +02:00

View file

@ -74,6 +74,7 @@ curl -X 'GET' \
tar -zvx --strip-components=1 -C "$old"
endgroup
(cd "$old" && "$GITHUB_ACTION_PATH/scripts/create-report.sh" old-report.json)
repo_dir=$PWD
(cd "$old" && "$GITHUB_ACTION_PATH/scripts/create-report.sh" "$repo_dir"/old-report.json)
exit 0