Skip to content

Commit

Permalink
Merge pull request #23 from musimana/develop
Browse files Browse the repository at this point in the history
release/v10-beta.1.0
  • Loading branch information
musimana authored Mar 22, 2024
2 parents 3d70c3f + 2348de0 commit 06e0df2
Show file tree
Hide file tree
Showing 10 changed files with 322 additions and 287 deletions.
18 changes: 4 additions & 14 deletions .docs/RELEASE.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,11 @@
# RELEASE PROCESS

New versions should be named in accordance with the [SemVer](http://semver.org/) conventions.

When releasing a new version of the app, the following should be completed in order:

1) Clear your local repository with `git add . && git reset --hard && git checkout main`
2) On the [GitHub repository](github.com/musimana/bassform), check the contents of github.com/musimana/bassform/compare/{latest_version}...main
3) Checkout the release branch
4) Run the linters locally using: `npm run lint`, if their are errors, a new patch version is required and these steps should be restarted
5) Run the unit tests locally using: `composer test:types`, if their are errors, a new patch version is required and these steps should be restarted
6) Run the type tests locally using: `php artisan test --parallel`, if any tests fail a new patch version is required and these steps should be restarted
7) Run the browser tests locally using: `php artisan dusk`, if any tests fail a new patch version is required and these steps should be restarted
8) Commit the updated [README](../README.md) with the message: `git commit -m "release: vX.X.X"`
9) Push the changes to GitHub
New versions are named in accordance with the [SemVer](http://semver.org/) conventions, and are identified by tagged releases on the repository.
A new tag is created for each release with the new tag and the title of the release in the format `v1.0.0`, where the digits indicate the SemVer version.
The convention is to use the generated release notes feature, with pre-releases marked as appropriate.

---

|Prev |
|---------------------------------------------------------------------------------------------------------------------------------------------:|
|:---------------------------------------------------------------------------------------------------------------------------------------------|
|[<<< Running Tests <<<](TESTING.md) ..........................................................................................................|
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Bassform - VILT SSR

VILT stack template app for PHP 8.2.x created by Musimana. Features include with server-side rendering (SSR) and Larastan, Pest & Dusk test suites.
VILT stack template app for PHP 8.2.x created by Musimana. Features include server-side rendering (SSR) and Larastan, Pest & Dusk test suites.

[Vue3](https://vuejs.org/),
[Inertia](https://inertiajs.com/),
Expand Down Expand Up @@ -32,4 +32,4 @@ See the [release instructions](.docs/RELEASE.md) for info on running deployments

## License

The both this app and the Laravel framework are open-source software, licensed under the [MIT license](https://opensource.org/licenses/MIT).
Both this app and the Laravel framework are open-source software, licensed under the [MIT license](https://opensource.org/licenses/MIT).
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"php": "8.2.*",
"guzzlehttp/guzzle": "^7.8.1",
"inertiajs/inertia-laravel": "^0.6.11",
"laravel/framework": "^10.46.0",
"laravel/framework": "^10.48.4",
"laravel/sanctum": "^3.3.3",
"laravel/tinker": "^2.9.0",
"tightenco/ziggy": "^1.8.2"
Expand All @@ -20,10 +20,10 @@
"larastan/larastan": "^2.9.2",
"laravel/dusk": "^7.13.0",
"laravel/pint": "^1.14.0",
"laravel/sail": "^1.28.2",
"mockery/mockery": "^1.6.7",
"laravel/sail": "^1.29.1",
"mockery/mockery": "^1.6.11",
"nunomaduro/collision": "^7.10.0",
"pestphp/pest": "^2.34.1",
"pestphp/pest": "^2.34.5",
"pestphp/pest-plugin-laravel": "^2.3.0",
"spatie/laravel-ignition": "^2.4.2"
},
Expand Down
Loading

0 comments on commit 06e0df2

Please sign in to comment.