From bf5a3cc38a354cf16dcd2b07c30a93c9e091ea92 Mon Sep 17 00:00:00 2001 From: David Glasser Date: Thu, 22 Sep 2022 13:22:42 -0700 Subject: [PATCH] ci --- .circleci/config.yml | 12 ++++++++++++ smoke-test/smoke-test.sh | 2 ++ 2 files changed, 14 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index f374aef4135..ceadc6ffb2c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -69,6 +69,18 @@ jobs: - setup-node - run: npm run test:smoke + Full incremental delivery tests with graphql@17 canary: + docker: + - image: cimg/base:stable + environment: + INCREMENTAL_DELIVERY_TESTS_ENABLED: t + steps: + - setup-node: + node-version: 18 + - run: npm i --legacy-peer-deps graphql@17.0.0-alpha.1.canary.pr.3361.04ab27334641e170ce0e05bc927b972991953882 + - run: npm run test + - run: npm run test:smoke + Prettier: docker: - image: cimg/base:stable diff --git a/smoke-test/smoke-test.sh b/smoke-test/smoke-test.sh index dddf51fbf08..174065c0a62 100755 --- a/smoke-test/smoke-test.sh +++ b/smoke-test/smoke-test.sh @@ -36,3 +36,5 @@ cd .. tsc --build tsconfig.{esm,cjs}.json node generated/tsc/smoke-test.cjs node generated/tsc/smoke-test.mjs + +# FIXME if INCREMENTAL_DELIVERY_TESTS_ENABLED is set, run an incremental delivery test.