diff --git a/.github/workflows/next-drupal.yml b/.github/workflows/next-drupal.yml
index 0f1c132c..c937f531 100644
--- a/.github/workflows/next-drupal.yml
+++ b/.github/workflows/next-drupal.yml
@@ -14,10 +14,10 @@ jobs:
with:
ref: ${{github.event.pull_request.head.ref}}
repository: ${{github.event.pull_request.head.repo.full_name}}
- - name: Install modules
+ - name: Install packages
run: yarn
- name: Run tests
- run: yarn workspace next-drupal test
+ run: yarn test
env:
DRUPAL_BASE_URL: ${{ secrets.DRUPAL_BASE_URL }}
DRUPAL_USERNAME: ${{ secrets.DRUPAL_USERNAME }}
diff --git a/examples/example-blog/components/meta.tsx b/examples/example-blog/components/meta.tsx
index a7defa23..8ec3172a 100644
--- a/examples/example-blog/components/meta.tsx
+++ b/examples/example-blog/components/meta.tsx
@@ -48,7 +48,11 @@ export function Meta({ title, tags }: MetaProps) {
content={`${process.env.NEXT_PUBLIC_BASE_URL}/images/meta.jpg`}
/>
-
+
>
)}
diff --git a/examples/example-graphql/pages/[...slug].tsx b/examples/example-graphql/pages/[...slug].tsx
index 34cccf20..5d963ce6 100644
--- a/examples/example-graphql/pages/[...slug].tsx
+++ b/examples/example-graphql/pages/[...slug].tsx
@@ -12,7 +12,11 @@ export default function NodePage({ resource }) {