feat(hk): badge and room ad management #72
This file contains 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 | |
on: | |
push: | |
branches: [ "main", "develop" ] | |
pull_request: | |
branches: [ "main", "develop" ] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: Cache composer dependencies | |
uses: actions/cache@v2 | |
with: | |
path: vendor | |
key: composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
composer- | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: 8.2 | |
- name: Install composer dependencies | |
run: | | |
composer install --no-scripts | |
- name: Install NPM dependencies | |
run: npm install | |
- name: Compile assets | |
run: npm run build:atom | |
- name: Prepare Laravel Application | |
run: | | |
cp .env.example .env | |
touch database/testing.sqlite | |
php artisan key:generate | |
- name: Run Test suite | |
run: php artisan test |