Skip to content

Commit

Permalink
[ci] Let failed types-next jobs pass (#20007)
Browse files Browse the repository at this point in the history
  • Loading branch information
eps1lon authored Mar 6, 2020
1 parent dec3870 commit 91fa13b
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 91fa13b

Please sign in to comment.