github actions take 1

This commit is contained in:
itsAzaria
2026-02-19 00:48:12 +00:00
parent e2fbce88c4
commit 946ed945cc
5 changed files with 95 additions and 0 deletions
+14
View File
@@ -20,6 +20,20 @@
}
},
"scripts": {
"lint": [
"@php scripts/php-lint.php"
],
"format:check": [
"vendor/bin/pint --test"
],
"ci": [
"@composer validate --strict",
"@composer lint",
"@composer format:check"
],
"ci:build": [
"@php laracord app:build --build-version=ci"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]