You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: readme.md
+16-19Lines changed: 16 additions & 19 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1021,7 +1021,8 @@ beforeEach(() => {
1021
1021
id:1,
1022
1022
name:'John',
1023
1023
});
1024
-
});```
1024
+
});
1025
+
```
1025
1026
1026
1027
</details>
1027
1028
@@ -1120,7 +1121,6 @@ beforeEach(() => {
1120
1121
1121
1122
• Observability - Some things must be monitored, like errors or remarkable business events. When a transaction fails, not only we expect the right response but also correct error handling and proper logging/metrics. This information goes directly to a very important user - The ops user (i.e., production SRE/admin)
@@ -1853,23 +1851,23 @@ Practically, some CI vendors (Example: [CircleCI local CLI](https://circleci.com
1853
1851
1854
1852
### :clap: Doing It Right Example: npm scripts that perform code quality inspection, all are run in parallel on demand or when a developer is trying to push new code
@@ -1933,13 +1931,12 @@ The huge Kubernetes ecosystem is yet to formalize a standard convenient tool for
1933
1931
1934
1932
### :clap: Doing It Right Example:
1935
1933
1936
-
```javascript
1937
-
//install license-checker in your CI environment or also locally
1934
+
```shell
1935
+
#install license-checker in your CI environment or also locally
1938
1936
npm install -g license-checker
1939
1937
1940
-
//ask it to scan all licenses and fail with exit code other than 0 if it found unauthorized license. The CI system should catch this failure and stop the build
1938
+
#ask it to scan all licenses and fail with exit code other than 0 if it found unauthorized license. The CI system should catch this failure and stop the build
0 commit comments