-
Notifications
You must be signed in to change notification settings - Fork 8.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Validate docs urls for langchain nodes as well (no-changelog) (#8271
- Loading branch information
Showing
3 changed files
with
36 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,12 @@ | ||
{ | ||
"dependencies": { | ||
"cacheable-lookup": "6.1.0", | ||
"conventional-changelog": "^4.0.0", | ||
"glob": "^10.3.0", | ||
"semver": "^7.5.4", | ||
"tempfile": "^5.0.0", | ||
"debug": "4.3.4", | ||
"glob": "10.3.10", | ||
"p-limit": "3.1.0", | ||
"semver": "7.5.4", | ||
"tempfile": "5.0.0", | ||
"typescript": "*" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,10 +27,12 @@ jobs: | |
run: pnpm install --frozen-lockfile | ||
|
||
- name: Build nodes-base | ||
run: pnpm --filter @n8n/client-oauth2 --filter n8n-workflow --filter n8n-core --filter n8n-nodes-base build | ||
run: pnpm --filter @n8n/client-oauth2 --filter n8n-workflow --filter n8n-core --filter n8n-nodes-base --filter @n8n/n8n-nodes-langchain build | ||
|
||
- run: npm install --prefix=.github/scripts --no-package-lock | ||
|
||
- name: Test URLs | ||
run: node scripts/validate-docs-links.js | ||
run: node .github/scripts/validate-docs-links.js | ||
|
||
- name: Notify Slack on failure | ||
uses: act10ns/[email protected] | ||
|