21 sales page (#23) #8
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
| name: Laravel CI - Local Runner | |
| on: | |
| push: | |
| branches: [ development ] | |
| pull_request: | |
| jobs: | |
| laravel-local-test: | |
| runs-on: self-hosted | |
| env: | |
| DB_CONNECTION: mysql | |
| DB_HOST: 127.0.0.1 | |
| DB_PORT: 3306 | |
| DB_DATABASE: laravel_pos | |
| DB_USERNAME: root | |
| DB_PASSWORD: Dbmaman17 | |
| steps: | |
| - name: 🧾 Checkout code | |
| uses: actions/checkout@v3 | |
| - name: 🧰 Install PHP dependencies | |
| run: composer install --no-interaction --prefer-dist | |
| # - name: ⚙️ Copy .env | |
| # run: cp .env.example .env | |
| # - name: 🔐 Generate app key | |
| # run: php artisan key:generate | |
| # - name: 🗄️ Run database migrations | |
| # run: php artisan migrate --force | |
| # - name: ✅ Run Laravel tests | |
| # run: php artisan test |