diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 899bc27f..d8b348da 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -10,6 +10,8 @@ concurrency: jobs: quality-assurance: runs-on: docker + env: + PUPPETEER_EXECUTABLE_PATH: /usr/bin/chromium steps: - name: Checkout repository uses: actions/checkout@v4 @@ -58,8 +60,7 @@ jobs: - name: ๐Ÿงช QA Checks env: TURBO_TELEMETRY_DISABLED: "1" - PUPPETEER_EXECUTABLE_PATH: /usr/bin/chromium - run: npx turbo run check:mdx lint typecheck test --cache-dir=".turbo" + run: npx turbo run lint typecheck test --cache-dir=".turbo" - name: ๐Ÿ—๏ธ Build run: pnpm build diff --git a/turbo.json b/turbo.json index 1b1f9510..ff0dbc4e 100644 --- a/turbo.json +++ b/turbo.json @@ -43,10 +43,6 @@ "check:spell": { "inputs": ["content/**/*.{md,mdx}", "app/**/*.tsx", "components/**/*.tsx", "cspell.json"], "outputs": [] - }, - "check:mdx": { - "inputs": ["content/**/*.{md,mdx}", "scripts/validate-mdx.mjs"], - "outputs": [] } } }