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" },