Skip to content

Commit 9100832

Browse files
committed
fix(ci): exclude non-published apps from React 18 typecheck
The docs app (Docusaurus) has its own React 19 types that conflict with @types/react@18. Only typecheck the published EDS packages.
1 parent 706afda commit 9100832

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/react18-compat.yaml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,10 @@ jobs:
4848
- name: Test packages
4949
run: pnpm run test
5050
- name: Type check packages
51-
run: pnpm run types
51+
run: |
52+
pnpm --filter @equinor/eds-tokens types
53+
pnpm --filter @equinor/eds-utils types
54+
pnpm --filter @equinor/eds-icons types
55+
pnpm --filter @equinor/eds-core-react types
56+
pnpm --filter @equinor/eds-lab-react types
57+
pnpm --filter @equinor/eds-data-grid-react types

0 commit comments

Comments
 (0)