Skip to content

Commit 45de22a

Browse files
authored
meta: CI updates (getsentry#1950)
* meta: CI updates * meta: Update danger
1 parent 03f530e commit 45de22a

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

.travis.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,11 @@ cache:
1919
directories:
2020
- node_modules
2121

22+
matrix:
23+
fast_finish: true
24+
allow_failures:
25+
- script: scripts/browser-saucelabs.sh
26+
2227
stages:
2328
- Test
2429
- Saucelabs

dangerfile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,6 @@ export default async () => {
4848

4949
schedule(async () => {
5050
const result = (await promisify(exec)('cd packages/browser; yarn size:check')).stdout;
51-
message(`@sentry/browser bundle gzip'ed minified size: *(${result.split('\n')[4]}) (${result.split('\n')[5]})*`);
51+
message(`@sentry/browser bundle gzip'ed minified size: *(${result.split('\n')[3]}) (${result.split('\n')[4]})*`);
5252
});
5353
};

packages/browser/README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,15 @@
1313
[![npm dt](https://img.shields.io/npm/dt/@sentry/browser.svg)](https://www.npmjs.com/package/@sentry/browser)
1414
[![typedoc](https://img.shields.io/badge/docs-typedoc-blue.svg)](http://getsentry.github.io/sentry-javascript/)
1515

16-
[![Sauce Test Status](https://saucelabs.com/browser-matrix/sentryio.svg)](https://saucelabs.com/u/sentryio)
17-
1816
## Links
1917

2018
- [Official SDK Docs](https://docs.sentry.io/quickstart/)
2119
- [TypeDoc](http://getsentry.github.io/sentry-javascript/)
2220

2321
## Usage
2422

25-
To use this SDK, call `Sentry.init(options)` as early as possible after loading the page. This will initialize the SDK and hook
26-
into the environment. Note that you can turn off almost all side effects using the respective options.
23+
To use this SDK, call `Sentry.init(options)` as early as possible after loading the page. This will initialize the SDK
24+
and hook into the environment. Note that you can turn off almost all side effects using the respective options.
2725

2826
```javascript
2927
import * as Sentry from '@sentry/browser';

0 commit comments

Comments
 (0)