-
Notifications
You must be signed in to change notification settings - Fork 9.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' of https://github.com/n8n-io/n8n into node-628-…
…google-sheets-add-by-name-option-to-the-sheet-selector-not
- Loading branch information
Showing
315 changed files
with
7,135 additions
and
3,194 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] | ||
|
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
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
13 changes: 13 additions & 0 deletions
13
cypress/composables/modals/workflow-credential-setup-modal.ts
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
/** | ||
* Getters | ||
*/ | ||
|
||
export const getWorkflowCredentialsModal = () => cy.getByTestId('setup-workflow-credentials-modal'); | ||
|
||
export const getContinueButton = () => cy.getByTestId('continue-button'); | ||
|
||
/** | ||
* Actions | ||
*/ | ||
|
||
export const closeModalFromContinueButton = () => getContinueButton().click(); |
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/** | ||
* Getters | ||
*/ | ||
|
||
export const getFormStep = () => cy.getByTestId('setup-credentials-form-step'); | ||
|
||
export const getStepHeading = ($el: JQuery<HTMLElement>) => | ||
cy.wrap($el).findChildByTestId('credential-step-heading'); | ||
|
||
export const getStepDescription = ($el: JQuery<HTMLElement>) => | ||
cy.wrap($el).findChildByTestId('credential-step-description'); | ||
|
||
export const getCreateAppCredentialsButton = (appName: string) => | ||
cy.get(`button:contains("Create new ${appName} credential")`); |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
/** | ||
* Getters | ||
*/ | ||
|
||
export const getSetupWorkflowCredentialsButton = () => cy.get(`button:contains("Set up template")`); |
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
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
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
Oops, something went wrong.