forked from Eclipse-Phase-Unofficial/ep-character-creator
-
Notifications
You must be signed in to change notification settings - Fork 1
Refactor EOL components, add CI test suite and nightly image build #2
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
|
@copilot review and fix CI |
Updated README to reflect project status and Docker instructions.
Updated the About component to display commit label separately.
Updated copyright information and licensing terms for clarity. Added notes regarding previous maintainer's LGPL claims and their legal implications.
Updated README to clarify the edition and improve wording.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Upgraded the backend to Laravel 12 (from Laravel 5.6) and PHP 8.4 (from PHP 7.4), modernized the bootstrap/routing/middleware setup, and updated the test harness to be PHPUnit 11‑compatible with an auto‑generated SQLite test DB.
Upgraded the frontend stack to Vue 3 (Vue 2 is EOL), Vue Router 4, Vuex 4, and Laravel Mix 6 / Webpack 5, plus moved the build stage to Node 24 LTS.
Documented the new build and test steps and updated env handling for
VITE_GOOGLE_ANALYTICS_ID(backward‑compatible withMIX_).Updated test suite with new frontend and character sheet export smoke tests, documented in
tests/README.md. Added CI to run these on new commits.Key changes
bootstrap/app.php,public/index.php,artisan,app/Providers/RouteServiceProvider.php,app/Http/Middleware/TrustProxies.php,app/Exceptions/Handler.php,routes/*.php, composer.json, composer.lock,phpunit.xml, `tests/*.package.json,package-lock.json,webpack.mix.js,resources/js/app.js,resources/sass/vendor.scss,resources/views/,main.blade.php.Tests run
sudo docker build -t epcc .sudo docker run --rm -d -p 8080:80 --name epcc_test epcccurl -fsS http://localhost:8080/ | head -n 5sudo docker run --rm -v "$PWD":/app -w /app composer:2 sh -lc "git config --global --add safe.directory /app && composer install && vendor/bin/phpunit"Notes