From 383ad80768bf76454090e073d9a88733b6d7b1ff Mon Sep 17 00:00:00 2001 From: Bjorn Lu Date: Thu, 27 Apr 2023 21:23:29 +0800 Subject: [PATCH] Speed up docs smoke tests (#6921) --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3de95dc25..970dc1d7c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -239,7 +239,11 @@ jobs: - name: Build Packages run: pnpm run build + - name: Remove docs translations except for English and Korean + run: find smoke/docs/src/content/docs ! -name 'en' ! -name 'ko' -type d -mindepth 1 -maxdepth 1 -exec rm -rf {} + + - name: Test run: pnpm run test:smoke env: - SKIP_OG: 1 + SKIP_OG: true + PUBLIC_TWO_LANG: true