-
Notifications
You must be signed in to change notification settings - Fork 0
das-22-implement-missing-api-routes-author-openapi-specification #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from 3 commits
88c12c8
3f780f6
f36543b
5e0e5b0
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4,11 +4,11 @@ on: | |
| push: | ||
| branches: | ||
| - develop | ||
| - main | ||
| - master | ||
| pull_request: | ||
| branches: | ||
| - develop | ||
| - main | ||
| - master | ||
|
|
||
|
Comment on lines
5
to
12
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 Nitpick | 🔵 Trivial CI migrate step may be pointing at the wrong database The new
Consider one of these saner options:
Also, you’re doing full Also applies to: 49-50 🤖 Prompt for AI Agents |
||
| jobs: | ||
| ci: | ||
|
|
@@ -29,10 +29,28 @@ jobs: | |
| uses: actions/setup-node@v4 | ||
| with: | ||
| node-version: '22' | ||
| cache: 'npm' | ||
|
|
||
| - name: Setup pnpm | ||
| uses: pnpm/action-setup@v4 | ||
| with: | ||
| version: 10 | ||
| run_install: false | ||
|
|
||
| - name: Get pnpm store directory | ||
| shell: bash | ||
| run: | | ||
| echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | ||
|
|
||
| - name: Setup pnpm cache | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: ${{ env.STORE_PATH }} | ||
| key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }} | ||
| restore-keys: | | ||
| ${{ runner.os }}-pnpm-store- | ||
|
|
||
| - name: Install Node Dependencies | ||
| run: npm ci | ||
| run: pnpm install --frozen-lockfile | ||
julian-richter marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| - name: Install Dependencies | ||
| run: composer install --no-interaction --prefer-dist --optimize-autoloader | ||
|
|
@@ -44,7 +62,10 @@ jobs: | |
| run: php artisan key:generate | ||
|
|
||
| - name: Build Assets | ||
| run: npm run build | ||
| run: pnpm run build | ||
|
|
||
| - name: Run Migrations | ||
| run: php artisan migrate --force | ||
|
|
||
| - name: Tests | ||
| run: ./vendor/bin/pest | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,6 +25,7 @@ This application is a Laravel application and its main Laravel ecosystems packag | |
| - laravel/sail (SAIL) - v1 | ||
| - pestphp/pest (PEST) - v4 | ||
| - phpunit/phpunit (PHPUNIT) - v12 | ||
| - rector/rector (RECTOR) - v2 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 🧹 Nitpick | 🔵 Trivial Why is this duplicated in 5+ AI config files? You're adding the same Rector entry to GEMINI.md, .github/copilot-instructions.md, AGENTS.md, .junie/guidelines.md, AND .cursor/rules/laravel-boost.mdc. That's peak enterprise "let's copy-paste our way to consistency." Also, composer.json declares 🤖 Prompt for AI Agents |
||
| - @inertiajs/vue3 (INERTIA) - v2 | ||
| - tailwindcss (TAILWINDCSS) - v4 | ||
| - vue (VUE) - v3 | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.