diff --git a/.github/workflows/test-hosts.yml b/.github/workflows/test-hosts.yml deleted file mode 100644 index 12391e783d5c..000000000000 --- a/.github/workflows/test-hosts.yml +++ /dev/null @@ -1,48 +0,0 @@ -name: Hosted tests - -on: - schedule: - - cron: '0 0 * * 0' - -env: - ASTRO_TELEMETRY_DISABLED: true - TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }} - TURBO_TEAM: ${{ secrets.TURBO_TEAM }} - VERCEL_ORG_ID: ${{ secrets.VERCEL_TEST_ORG_ID }} - VERCEL_PROJECT_ID: ${{ secrets.VERCEL_TEST_PROJECT_ID }} - VERCEL_TOKEN: ${{ secrets.VERCEL_TEST_TOKEN }} - FORCE_COLOR: true - -jobs: - test: - name: Run tests - runs-on: ubuntu-latest - steps: - - name: Check out repository - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 - - - name: Setup PNPM - uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0 - - - name: Setup Node - uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # v6.2.0 - with: - node-version: 24.13.1 - cache: 'pnpm' - - - name: Install dependencies - run: pnpm install - - - name: Build Astro - run: pnpm turbo build --filter astro --filter @astrojs/vercel - - - name: Build test project - working-directory: ./packages/integrations/vercel/test/hosted/hosted-astro-project - run: pnpm run build - - - name: Deploy to Vercel - working-directory: ./packages/integrations/vercel/test/hosted/hosted-astro-project - run: pnpm dlx vercel --prod --prebuilt - - - name: Test - run: pnpm run test:e2e:hosts