Skip to content

Commit

Permalink
➕ New workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-luchack committed Aug 29, 2022
1 parent eb929b8 commit 2ea46a7
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Build

on:
push:
branches:
- master

jobs:
buildApp:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Install dependencies
run: composer install && npm install

- name: Generate TailwindCSS
run: npm run prod

- name: Migrate database
run: php artisan migrate

- name: Launch server
run: php artisan serve

0 comments on commit 2ea46a7

Please sign in to comment.