Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
extensions: bcmath, pdo_sqlite

- name: Setup Bun
uses: oven-sh/setup-bun@v1
Expand Down
7 changes: 7 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
uses: shivammathur/setup-php@v2
with:
php-version: 8.4
extensions: bcmath, pdo_sqlite
tools: composer:v2
coverage: xdebug

Expand All @@ -39,9 +40,15 @@ jobs:
- name: Copy Environment File
run: cp .env.example .env

- name: Create Database
run: mkdir -p database && touch database/database.sqlite

- name: Generate Application Key
run: php artisan key:generate

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

- name: Publish Ziggy Configuration
run: php artisan ziggy:generate

Expand Down
2 changes: 1 addition & 1 deletion eslint.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@ export default antfu({
html: true,
markdown: 'prettier',
},
ignores: ['storage/**/*', '**/*.{yaml,yml,php}', 'resources/js/components/ui/**/*', 'public/**/*'],
ignores: ['storage/**/*', '**/*.{yaml,yml,php}', 'resources/js/Components/ui/**/*', 'public/**/*'],
})
1 change: 1 addition & 0 deletions phpunit.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,6 @@
<env name="QUEUE_CONNECTION" value="sync"/>
<env name="SESSION_DRIVER" value="database"/>
<env name="TELESCOPE_ENABLED" value="false"/>
<env name="APP_DEBUG" value="false"/>
</php>
</phpunit>
2 changes: 1 addition & 1 deletion resources/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ createInertiaApp({
resolve: name =>
resolvePageComponent(
`./pages/${name}.vue`,
import.meta.glob('./pages/**/*.vue'),
import.meta.glob('./pages/**/*.vue', { eager: true }),
),
setup({ el, App, props, plugin }) {
return createApp({ render: () => h(App, props) })
Expand Down
Loading