diff --git a/.github/actions/setup-project/action.yml b/.github/actions/setup-project/action.yml index bfe8d1d..e80bc9c 100644 --- a/.github/actions/setup-project/action.yml +++ b/.github/actions/setup-project/action.yml @@ -10,6 +10,7 @@ inputs: seed-database: description: Whether to seed the database or not default: 'false' + runs: using: composite steps: @@ -42,4 +43,10 @@ runs: if: inputs.seed-database == 'true' run: php artisan db:seed shell: bash - working-directory: ./${{ inputs.path }} \ No newline at end of file + working-directory: ./${{ inputs.path }} + + - name: Build frontend assets + if: inputs.setup-node == 'true' + run: npm run build + shell: bash + working-directory: ./${{ inputs.path }}