From 21341cc07f5a15862cb9a38106a346aa82529939 Mon Sep 17 00:00:00 2001 From: Andrei Alecu Date: Sun, 4 Feb 2024 13:59:21 +0200 Subject: [PATCH] fix are the types wrong test --- .github/workflows/arethetypeswrong.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/arethetypeswrong.yml b/.github/workflows/arethetypeswrong.yml index c83c623241f..7d2957be954 100644 --- a/.github/workflows/arethetypeswrong.yml +++ b/.github/workflows/arethetypeswrong.yml @@ -25,4 +25,5 @@ jobs: run: npm run build - name: Run AreTheTypesWrong id: attw - run: ./node_modules/.bin/attw --format ascii --pack dist > $GITHUB_STEP_SUMMARY + # we exclude apollo-client.cjs because it's only a workaround for older bundlers (issue #8605) + run: ./node_modules/.bin/attw --format ascii --pack dist --exclude-entrypoints apollo-client.cjs > $GITHUB_STEP_SUMMARY