forked from cachethq/core
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build assets automatically (cachethq#51)
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Compile Assets | ||
|
||
on: [push] | ||
|
||
jobs: | ||
compile: | ||
name: Compile Assets | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
|
||
- name: Setup PHP | ||
uses: shivammathur/setup-php@v2 | ||
with: | ||
php-version: ${{ matrix.php }} | ||
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv, imagick, fileinfo | ||
coverage: none | ||
|
||
- name: Install PHP dependencies | ||
run: | | ||
composer require "laravel/framework:11.x" --no-interaction --no-update | ||
composer update --prefer-dist --no-interaction | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
|
||
- name: Install NPM dependencies | ||
run: npm ci | ||
|
||
- name: Compile assets | ||
run: npm run build | ||
|
||
- name: Commit compiled files | ||
uses: stefanzweifel/git-auto-commit-action@v5 | ||
with: | ||
commit_message: Compile Assets | ||
file_pattern: "public/build" |