Skip to content

Commit 33cd2b5

Browse files
committed
chore(ci): fix build
1 parent 626d29d commit 33cd2b5

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.github/workflows/docs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ jobs:
2424
registry-url: https://registry.npmjs.org/
2525
cache: "pnpm"
2626

27-
- name: Install Dependencies
28-
run: pnpm install && cd ./playgrounds/nuxt3/ && pnpm install
27+
- run: pnpm i && cd packages/schema-org && pnpm build
28+
- run: cd ./playgrounds/nuxt3/ && pnpm install
2929

3030
- name: Install Docs Dependencies
3131
run: cd ./docs && pnpm install

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
env:
2929
CONVENTIONAL_GITHUB_RELEASER_TOKEN: ${{secrets.GITHUB_TOKEN}}
3030

31-
- name: Install Dependencies
32-
run: pnpm install && cd ./playgrounds/nuxt3/ && pnpm install
31+
- run: pnpm i && cd packages/schema-org && pnpm build
32+
- run: cd ./playgrounds/nuxt3/ && pnpm install
3333

3434
- name: PNPM build
3535
run: pnpm run build

.github/workflows/test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ jobs:
3333
registry-url: https://registry.npmjs.org/
3434
cache: "pnpm"
3535

36-
- run: pnpm install && cd ./playgrounds/nuxt3/ && pnpm install
36+
- run: pnpm i && cd packages/schema-org && pnpm build
37+
- run: cd ./playgrounds/nuxt3/ && pnpm install
3738

3839
- name: Build
3940
run: pnpm run build

0 commit comments

Comments
 (0)