Add back CI (#2785)

* Add back CI, remove ospec as a run-time dependency

* Fix the lint:docs errors

* Add back ospec for now, with a compatible version
This commit is contained in:
Pierre-Yves Gérardy 2022-06-10 18:10:26 +02:00 committed by GitHub
parent da1454b3c6
commit ea680dc917
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 113 additions and 46 deletions

View file

@ -519,7 +519,7 @@ In typical scenarios, streaming won't provide noticeable performance benefits be
#### Promises are not the response data
The `m.request` method returns a [Promise](promise.md), not the response data itself. It cannot return that data directly because an HTTP request may take a long time to complete (due to network latency), and if JavaScript waited for it, it would freeze the application until the data was available.
The `m.request` method returns a `Promise`, not the response data itself. It cannot return that data directly because an HTTP request may take a long time to complete (due to network latency), and if JavaScript waited for it, it would freeze the application until the data was available.
```javascript
// AVOID