Skip to content
Open
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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .changeset/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@
"useCalculatedVersion": true,
"prereleaseTemplate": "rc.{timestamp}"
},
"ignore": ["@repo/ssr-testing", "@repo/storybook"]
"ignore": ["@repo/*"]
}
35 changes: 35 additions & 0 deletions .github/workflows/build-apps.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: Build Test Apps

on:
pull_request:
branches:
- main

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
build-apps:
name: Build Test Apps
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
run_install: false

- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'pnpm'

- name: Install dependencies
run: pnpm install --frozen-lockfile

- name: Run build
run: pnpm build:apps
11 changes: 0 additions & 11 deletions apps/ssr-testing/README.md

This file was deleted.

58 changes: 0 additions & 58 deletions apps/ssr-testing/app/layout.tsx

This file was deleted.

3 changes: 0 additions & 3 deletions apps/ssr-testing/app/page.tsx

This file was deleted.

20 changes: 0 additions & 20 deletions apps/ssr-testing/app/portal/conditional-portal.tsx

This file was deleted.

16 changes: 0 additions & 16 deletions apps/ssr-testing/app/portal/custom-portal-container.tsx

This file was deleted.

40 changes: 0 additions & 40 deletions apps/ssr-testing/app/portal/page.tsx

This file was deleted.

106 changes: 0 additions & 106 deletions apps/ssr-testing/app/roving-focus-group/page.tsx

This file was deleted.

95 changes: 0 additions & 95 deletions apps/ssr-testing/app/roving-focus-group/roving-focus.client.tsx

This file was deleted.

Loading