-
Notifications
You must be signed in to change notification settings - Fork 39
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: check markdown links on the CI #958
Conversation
9b08d37
to
41e4d7b
Compare
6bd3a1d
to
8496084
Compare
231d1ae
to
61374bd
Compare
61374bd
to
5f2a0fa
Compare
6dadf7c
to
e55a0b9
Compare
☁️ Nx Cloud ReportCI is running/has finished running commands for commit 0e643a8. As they complete they will appear below. Click to see the status, the terminal output, and the build insights. 📂 See all runs for this CI Pipeline Execution ✅ Successfully ran 2 targetsSent with 💌 from NxCloud. |
e55a0b9
to
b42a1cd
Compare
b42a1cd
to
aa3017f
Compare
4ac2896
to
e972790
Compare
...s/schematics/java/client-core/swagger-codegen-java-client/config/swagger-codegen-config.json
Show resolved
Hide resolved
e972790
to
6858dfa
Compare
@@ -42,15 +42,15 @@ In your generator project, a single jar file will be produced in `target`. You | |||
java -cp "/path/to/swagger-codegen-cli.jar;/path/to/mdk/target/folder/mdk-swagger-codegen-0.0.0.jar;" \ | |||
io.swagger.codegen.SwaggerCodegen generate -l javaMdk \ | |||
-i "/path/to/your/swagger/spec/file/Airline_Public.yaml" \ | |||
-c "/pth/to/thi/project/config/swagger-codegen-config.json" \ | |||
-c "/pth/to/the/project/config/swagger-codegen-config.json" \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
-c "/pth/to/the/project/config/swagger-codegen-config.json" \ | |
-c "/path/to/the/project/config/swagger-codegen-config.json" \ |
|
||
``` | ||
{ | ||
"groupId" : "com.airline.dapi", // Generated Maven project Goupt ID | ||
"groupId" : "com.airline.dapi", // Generated Maven project Goupt ID |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
do we want all of these references to dapi ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this file is already present twice in the repo. I created an issue to remove all references to DAPI/DES/Digital #1190
@@ -101,6 +101,3 @@ A code generator is provided to generate an extension of the **Amadeus Digital E | |||
```bash | |||
yarn yo @ama-sdk/sdk:api-extension |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
maybe remove reference to Amadeus Digital in the line above (line 99) ?
A code generator is provided to generate an API specification extension.
@@ -106,6 +106,3 @@ A code generator is provided to generate an extension of the **Amadeus Digital E | |||
```bash | |||
yarn yo @ama-sdk/sdk:api-extension |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here, remove reference to Amadeus Digital (line 104) ?
A code generator is provided to generate an API specification extension.
6858dfa
to
bd66642
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you move this file to .github
with other task configuration file?
bd66642
to
0e643a8
Compare
Proposed change
While exploring the documentation, I've noticed some broken link.
I found markdown-link-check which does a good job for both relative and external links.
Ideally we could have 2 separate runs: one on modified files on PRs and a second one triggered every month on all
md
files to check for broken external links.