Improve UI/UX of tasks board #2281
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Internal Packages in External App | |
on: | |
push: | |
branches: ['main'] | |
pull_request: | |
jobs: | |
build: | |
timeout-minutes: 15 | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [22] | |
env: | |
# Use Vercel Remote Caching | |
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} | |
TURBO_TEAM: ${{ secrets.TURBO_TEAM }} | |
# Configure production Supabase client | |
NEXT_PUBLIC_SUPABASE_URL: ${{ secrets.NEXT_PUBLIC_SUPABASE_URL }} | |
NEXT_PUBLIC_SUPABASE_ANON_KEY: ${{ secrets.NEXT_PUBLIC_SUPABASE_ANON_KEY }} | |
SUPABASE_SERVICE_KEY: ${{ secrets.SUPABASE_SERVICE_KEY }} | |
# Configure infrastructure | |
PROXY_API_KEY: ${{ secrets.PROXY_API_KEY }} | |
NEXT_PUBLIC_PROXY_API_KEY: ${{ secrets.NEXT_PUBLIC_PROXY_API_KEY }} | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Cache turbo build setup | |
uses: actions/cache@v4 | |
with: | |
path: .turbo | |
key: ${{ runner.os }}-turbo-external-internal-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-turbo-external-internal- | |
- uses: oven-sh/setup-bun@v2 | |
- name: Use Node.js 24 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 24 | |
- name: Install dependencies | |
run: bun install | |
- name: Build apps/external | |
run: bun run build --filter @tuturuuu/external |