Skip to content

Preload SSR-discovered client entries #1069

Preload SSR-discovered client entries

Preload SSR-discovered client entries #1069

Workflow file for this run

name: 🧪 Test
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
FLY_API_TOKEN: ${{ secrets.FLY_API_TOKEN }}
jobs:
test:
name: ⚡ Remix Test
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v6
- name: 📦 Setup pnpm
uses: pnpm/action-setup@v5
- name: ⎔ Setup node
uses: actions/setup-node@v6
with:
node-version: 24
cache: pnpm
- name: 📥 Install deps
run: pnpm install --frozen-lockfile
- name: 🎭 Install Playwright browsers
run: pnpm run test:install-browsers
- name: ⚡ Run Remix tests
run: pnpm run test
env:
PUBLIC_STOREFRONT_API_TOKEN: ${{ secrets.PUBLIC_STOREFRONT_API_TOKEN }}