From 1d33485fde0bb619a8d1c29eda76d5422edd4fdb Mon Sep 17 00:00:00 2001 From: Rikki Schulte Date: Mon, 16 Sep 2024 15:39:06 +0200 Subject: [PATCH] fix a test in the lsp server for graphql@15 --- .github/workflows/pr-graphql-compat-check.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pr-graphql-compat-check.yml b/.github/workflows/pr-graphql-compat-check.yml index da0c1c2098..3deb9063b4 100644 --- a/.github/workflows/pr-graphql-compat-check.yml +++ b/.github/workflows/pr-graphql-compat-check.yml @@ -24,10 +24,12 @@ jobs: strategy: matrix: release: - # test against the latest 16.x version, which might be newer than what we have - - '^16' - # test against the oldest version we support - - '^16.0.0' + # 15 stable tests work now! + - '15' + # test against the latest 16.x stable version, which might be newer than what we have + - '16' + # test against the oldest version we support (this might fail) + - '^15.8.0' # test against the latest alpha - '^17.0.0-alpha' steps: