Skip to content

add checkout event for realtime notification #2

add checkout event for realtime notification

add checkout event for realtime notification #2

Workflow file for this run

name: Deploy Laravel to Production
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.2
- name: Install Composer Dependencies
run: composer install --optimize-autoloader --no-dev --no-progress --no-interaction --prefer-dist
# - name: Install Node
# uses: actions/setup-node@v3
# with:
# node-version: '20'
# - name: Install NPM Dependencies
# run: npm install
# - name: Build NPM Assets
# run: npm run build