Skip to content

Commit d2adcf5

Browse files
authored
fix(ci): remove leftover lerna --scope flag from website build (#1989)
The 'pnpm run build --scope textlint-website' line was leftover lerna syntax that got forwarded to each package's tsc invocation as 'tsc -b --scope textlint-website', causing TS5072 errors. The following 'pnpm run website' already builds everything plus the website via 'pnpm --filter textlint-website run build', so the first line is redundant.
1 parent 5c0b9bd commit d2adcf5

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

.github/workflows/website.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@ jobs:
2424
- name: Install
2525
run: pnpm install
2626
- name: Build
27-
run: |
28-
pnpm run build --scope textlint-website
29-
pnpm run website
27+
run: pnpm run website
3028
- name: Deploy
3129
uses: peaceiris/actions-gh-pages@4f9cc6602d3f66b9c108549d475ec49e8ef4d45e # v4.0.0
3230
with:

0 commit comments

Comments
 (0)