Skip to content

Commit

Permalink
(#1) repo: add ci
Browse files Browse the repository at this point in the history
  • Loading branch information
SaintAngeLs committed Sep 8, 2024
1 parent ed0acbe commit f5e49fa
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Laravel CI

on:
push:
branches:
- '*'
pull_request:
branches:
- '*'

jobs:
build:

runs-on: ubuntu-latest

steps:
- name: Check out repository
uses: actions/checkout@v3

- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
extensions: mbstring, sqlite, pdo, pdo_sqlite, bcmath
coverage: none

- name: Cache Composer dependencies
uses: actions/cache@v3
with:
path: vendor
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

- name: Install Composer dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader

- name: Generate application key
run: php artisan key:generate

- name: Run migrations
run: php artisan migrate --force

- name: Run tests
run: vendor/bin/phpunit --testdox

- name: Install Node.js and build assets
uses: actions/setup-node@v3
with:
node-version: '18'
- run: npm install && npm run build

0 comments on commit f5e49fa

Please sign in to comment.