File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 25
25
- find . -type f -name '*.md' -exec awesome_bot {} \;
26
26
notifications :
27
27
email : false
28
-
28
+
29
+ - stage : ' Lint markdown files'
30
+ language : node_js
31
+ node_js : 12
32
+ os : linux
33
+ before_install : skip
34
+ install :
35
+ - npm i -g markdown-spellcheck
36
+ before_script :
37
+ - wget --quiet https://raw.githubusercontent.com/optimizely/mdspell-config/master/.spelling
38
+ script :
39
+ - mdspell -a -n -r --en-us '**/*.md'
40
+ after_success : skip
41
+
29
42
- &integrationtest
30
43
stage : ' Trigger Integration Tests'
31
44
language : minimal
Original file line number Diff line number Diff line change @@ -16,9 +16,9 @@ This release includes a new API to access project configuration data and other f
16
16
* OptimizelyConfig ([ #274 ] ( https://github.com/optimizely/swift-sdk/pull/274 ) ):
17
17
* Call ` getOptimizelyConfig() ` to get a snapshot copy of project configuration static data.
18
18
* It returns an ` OptimizelyConfig ` instance which includes a datafile revision number, all experiments, and feature flags mapped by their key values.
19
- * For details, refer to a documention page: https://docs.developers.optimizely.com/full-stack/docs/optimizelyconfig-swift
19
+ * For details, refer to a documentation page: https://docs.developers.optimizely.com/full-stack/docs/optimizelyconfig-swift
20
20
* Add LogEvent Notification ([ #263 ] ( https://github.com/optimizely/swift-sdk/pull/263 ) ):
21
- * Register an event listner with ` addLogEventNotificationListener() `
21
+ * Register an event listener with ` addLogEventNotificationListener() `
22
22
* The lister will be called when events are dispatched to the server.
23
23
* Turn on "Allow app extensions only" flag in build settings ([ #277 ] ( https://github.com/optimizely/swift-sdk/pull/277 ) )
24
24
You can’t perform that action at this time.
0 commit comments