Skip to content

Commit

Permalink
Update GitHub workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
kitten committed Feb 21, 2024
1 parent 1859e7e commit 6c03028
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion .github/workflows/site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion packages/cli-utils/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
},
Expand Down

0 comments on commit 6c03028

Please sign in to comment.