Skip to content

Commit

Permalink
Merge pull request #21 from musimana/feature/BASS-60_WorkflowConfig
Browse files Browse the repository at this point in the history
feature/BASS-60 | Workflow Config
  • Loading branch information
musimana authored Mar 22, 2024
2 parents 3d70c3f + e4284c3 commit 32eb4d3
Show file tree
Hide file tree
Showing 4 changed files with 49 additions and 5 deletions.
48 changes: 48 additions & 0 deletions .github/workflows/laravel.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
name: Laravel

on:
push:
branches: [ "main", "develop" ]
pull_request:
branches: [ "main", "develop" ]
workflow_dispatch:

jobs:
laravel-tests:

runs-on: ubuntu-latest

steps:
- uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
- uses: actions/checkout@v4
- name: Setup Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Copy .env
run: php -r "file_exists('.env') || copy('.env.example', '.env');"
- name: Install dependencies
run: |
composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
npm i
- name: Generate key
run: php artisan key:generate
- name: Set directory permissions
run: chmod -R 777 storage bootstrap/cache
- name: Compile the assets & start the server
run: npm run build && php artisan inertia:start-ssr &
- name: Create test database
run: |
mkdir -p database
touch database/database.sqlite
- name: Run the linters
run: npm run lint
- name: Execute Type tests via Larastan
run: composer test:types
- name: Execute Unit tests via PHPUnit
env:
DB_CONNECTION: sqlite
DB_DATABASE: database/database.sqlite
run: php artisan test
1 change: 0 additions & 1 deletion tests/Pest/Expectations/ToHaveCorrectHeaderValues.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@

$this
->toHaveKebabCaseKeys()
->toHaveCount(5)
->toHaveKeys([
'cache-control',
'date',
Expand Down
2 changes: 1 addition & 1 deletion tests/Pest/Expectations/ToHaveCorrectHtmlBody.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
->assertSeeInOrder([
'<body class="font-sans antialiased">',
'<div id="app" data-page="{',
'}"></div>',
'></div>',
'</body>',
'</html>',
], false);
Expand Down
3 changes: 0 additions & 3 deletions tests/Pest/Expectations/ToHaveCorrectHtmlHead.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,6 @@
'<script type="text/javascript">',
'Ziggy',
'</script>',
'<script type="module" src="http://[::1]:5173/@vite/client"></script>',
'<script type="module" src="http://[::1]:5173/resources/js/app.js"></script>',
'<script type="module" src="http://[::1]:5173/resources/js/Pages/' . $template . '.vue"></script>',
'</head>',
], false);

Expand Down

0 comments on commit 32eb4d3

Please sign in to comment.