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
+14-18Lines changed: 14 additions & 18 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1120,7 +1120,6 @@ beforeEach(() => {
1120
1120
1121
1121
• 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 +1850,23 @@ Practically, some CI vendors (Example: [CircleCI local CLI](https://circleci.com
1853
1850
1854
1851
### :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 +1930,12 @@ The huge Kubernetes ecosystem is yet to formalize a standard convenient tool for
1933
1930
1934
1931
### :clap: Doing It Right Example:
1935
1932
1936
-
```javascript
1937
-
//install license-checker in your CI environment or also locally
1933
+
```shell
1934
+
#install license-checker in your CI environment or also locally
1938
1935
npm install -g license-checker
1939
1936
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
1937
+
#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