From 6c03028c045b30b3846f5d44248edf15f94fedee Mon Sep 17 00:00:00 2001 From: Phil Pluckthun Date: Wed, 21 Feb 2024 08:53:35 +0000 Subject: [PATCH] Update GitHub workflows --- .github/workflows/ci.yml | 6 +++--- .github/workflows/site.yml | 2 +- packages/cli-utils/src/index.ts | 2 +- website/package.json | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b8556520..96a5b714 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,10 +51,10 @@ jobs: run: pnpm run lint - name: Unit Tests - run: pnpm run test --run + run: pnpm multi --include-workspace-root run test --run - name: benchmarks - run: pnpm run bench --run + run: pnpm multi --include-workspace-root run bench --run - name: Build - run: pnpm run build + run: pnpm multi --include-workspace-root run build diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml index 7648efb9..c5e79189 100644 --- a/.github/workflows/site.yml +++ b/.github/workflows/site.yml @@ -49,7 +49,7 @@ jobs: - name: Build Website working-directory: website - run: pnpm run build + run: pnpm run export - name: Deploy to Cloudflare Pages uses: cloudflare/pages-action@v1 diff --git a/packages/cli-utils/src/index.ts b/packages/cli-utils/src/index.ts index f1203909..02baa7ca 100644 --- a/packages/cli-utils/src/index.ts +++ b/packages/cli-utils/src/index.ts @@ -77,7 +77,7 @@ async function main() { } const foundPlugin = tsConfig.compilerOptions!.plugins!.find( - (plugin) => plugin.name === '@0no-co/graphqlsp' + (plugin) => plugin.name === 2 //'@0no-co/graphqlsp' ) as GraphQLSPConfig; await ensureTadaIntrospection(foundPlugin.schema, false); diff --git a/website/package.json b/website/package.json index 86e20497..b4df0c35 100644 --- a/website/package.json +++ b/website/package.json @@ -6,7 +6,7 @@ "scripts": { "dev": "astro dev", "start": "astro dev", - "build": "astro check && astro build", + "export": "astro check && astro build", "preview": "astro preview", "astro": "astro" },