Skip to content

Commit

Permalink
ci: Fix docs urls (no-changelog) (#9116)
Browse files Browse the repository at this point in the history
  • Loading branch information
netroy committed Apr 11, 2024
1 parent 27de031 commit b2422ae
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/check-documentation-urls.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ jobs:
- name: Install dependencies
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 --filter @n8n/n8n-nodes-langchain build
- name: Build relevant packages
run: pnpm --filter @n8n/client-oauth2 --filter @n8n/imap --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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@ const algorithms: INodePropertyOptions[] = [
];

// eslint-disable-next-line n8n-nodes-base/cred-class-name-unsuffixed
export class jwtAuth implements ICredentialType {
export class JwtAuth implements ICredentialType {
// eslint-disable-next-line n8n-nodes-base/cred-class-field-name-unsuffixed
name = 'jwtAuth';

displayName = 'JWT Auth';

documentationUrl = 'jwtAuth';
documentationUrl = 'jwt';

icon = 'file:icons/jwt.svg';

Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/nodes/Twilio/TwilioTrigger.node.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
],
"primaryDocumentation": [
{
"url": "https://docs.n8n.io/integrations/builtin/app-nodes/n8n-nodes-base.twilio-trigger/"
"url": "https://docs.n8n.io/integrations/builtin/trigger-nodes/n8n-nodes-base.twiliotrigger/"
}
]
},
Expand Down
2 changes: 1 addition & 1 deletion packages/nodes-base/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
"dist/credentials/JiraSoftwareCloudApi.credentials.js",
"dist/credentials/JiraSoftwareServerApi.credentials.js",
"dist/credentials/JotFormApi.credentials.js",
"dist/credentials/jwtAuth.credentials.js",
"dist/credentials/JwtAuth.credentials.js",
"dist/credentials/Kafka.credentials.js",
"dist/credentials/KeapOAuth2Api.credentials.js",
"dist/credentials/KibanaApi.credentials.js",
Expand Down

0 comments on commit b2422ae

Please sign in to comment.