From 91fa13bd813922455d5f913ce721a2ff2c605cf4 Mon Sep 17 00:00:00 2001 From: Sebastian Silbermann Date: Fri, 6 Mar 2020 02:30:02 +0100 Subject: [PATCH] [ci] Let failed types-next jobs pass (#20007) --- .circleci/config.yml | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index eac6d68fa1d09e..3d1b172d668997 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -156,9 +156,14 @@ jobs: - install_js - run: name: Tests TypeScript definitions - # we want to see errors in all packages. - # without --no-bail we only see at most a single failing package - command: yarn typescript --no-bail + command: | + # ignore build failures + # it's expected that typescript@next fails since the lines of the errors + # change frequently. This build is monitored regardless of its status + set +e + # we want to see errors in all packages. + # without --no-bail we only see at most a single failing package + yarn typescript --no-bail test_browser: <<: *defaults steps: