Skip to content

remove red background in services-mega-menu.blade.php #436

remove red background in services-mega-menu.blade.php

remove red background in services-mega-menu.blade.php #436

Workflow file for this run

name: Deploy
on:
push:
branches:
- main
jobs:
deployment:
runs-on: ubuntu-22.04
environment: production
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
extensions: zip, sqlite3
coverage: none
- name: Check composer compatability
run: composer check-platform-reqs
- name: Install composer dependencies
run: composer install --no-cache --no-ansi --no-interaction --no-progress
env:
APP_URL: https://www.framedjustforyou.com.au
- name: Install node dependencies
run: npm ci
- name: Setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.production.example', '.env');"
- name: Generate key
run: php artisan key:generate
- name: Build frontend
run: |
npm run build
- name: Run Tests
run: ./vendor/bin/phpunit
- name: Deploy to Laravel Cloud
if: success()
run: |
curl -X POST ${{ secrets.CLOUD_DEPLOY_HOOK }} \
-H "Content-Type: application/json" \