From ac9f16fe455c51e6c02404a4abfafaf6fbccb5e4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Connor=20B=C3=A4r?= Date: Mon, 13 Nov 2023 12:33:56 +0100 Subject: [PATCH] Fix Astro template test --- .github/workflows/templates.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/templates.yml b/.github/workflows/templates.yml index 7297de52ce..6ca7a6887d 100644 --- a/.github/workflows/templates.yml +++ b/.github/workflows/templates.yml @@ -15,7 +15,7 @@ jobs: [ 'npx create-next-app --example "https://github.com/sumup-oss/circuit-ui/tree/main/packages/cna-template/template" test-app', 'npx create-remix@latest ./test-app --template https://github.com/sumup-oss/circuit-ui/tree/main/packages/remix-template --install --no-git-init', - 'npx create-astro@latest ./test-app --template sumup-oss/circuit-ui/packages/astro-template', + 'npx create-astro@latest ./test-app --template sumup-oss/circuit-ui/packages/astro-template --install --no-git --typescript=strictest', ] steps: - name: Checkout repository @@ -39,4 +39,4 @@ jobs: - name: Test app working-directory: ./test-app - run: npx start-server-and-test start 0.0.0.0:3000 "node ../scripts/verify-template.js" + run: npx start-server-and-test 'npm run start -- --port=3000' 0.0.0.0:3000 "node ../scripts/verify-template.js"