Skip to content

v2.3.8

v2.3.8 #453

name: Test App Quality
on: [push, pull_request]
jobs:
test-app-quality:
if: github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name != github.repository
timeout-minutes: 15
runs-on: ubuntu-24.04
strategy:
matrix:
adapter: ['vue', 'react', 'svelte']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install pnpm
uses: pnpm/action-setup@v3
with:
version: 10
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 22.14
cache: pnpm
- name: Install dependencies
run: pnpm install
- name: Build Inertia
run: pnpm -r --filter ./packages/core --filter ./packages/${{ matrix.adapter }}* build
- name: Type-check test-app
run: cd packages/${{ matrix.adapter == 'vue' && 'vue3' || matrix.adapter }}/test-app && pnpm run type-check
- name: ESLint test-app
run: cd packages/${{ matrix.adapter == 'vue' && 'vue3' || matrix.adapter }}/test-app && pnpm run lint