mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-25 12:44:07 -08:00
fix: revert CI checks to ensure that the package-lock.json file is up to date (#4135)
* Revert "ci: fail the build if `package-lock.json` is out of sync (#4101)"
This reverts commit b2807cecb3
.
* Update package-lock.json
This commit is contained in:
parent
f8ef2e99fa
commit
651d788ddb
2
.github/workflows/ci-master.yml
vendored
2
.github/workflows/ci-master.yml
vendored
|
@ -24,7 +24,7 @@ jobs:
|
|||
- name: npm install, build, and test
|
||||
run: |
|
||||
npm install -g npm@latest
|
||||
npm ci
|
||||
npm install
|
||||
npm run build --if-present
|
||||
npm test
|
||||
npm run lint
|
||||
|
|
2
.github/workflows/ci-pull-requests.yml
vendored
2
.github/workflows/ci-pull-requests.yml
vendored
|
@ -21,7 +21,7 @@ jobs:
|
|||
- name: npm install, build, and test
|
||||
run: |
|
||||
npm install -g npm@latest
|
||||
npm ci
|
||||
npm install
|
||||
npm run build --if-present
|
||||
npm test
|
||||
npm run lint
|
||||
|
|
2
.github/workflows/test-workflows.yml
vendored
2
.github/workflows/test-workflows.yml
vendored
|
@ -39,7 +39,7 @@ jobs:
|
|||
run: |
|
||||
cd n8n
|
||||
npm install -g npm@latest
|
||||
npm ci
|
||||
npm install
|
||||
npm run build --if-present
|
||||
env:
|
||||
CI: true
|
||||
|
|
|
@ -16,7 +16,7 @@ RUN npm config set legacy-peer-deps true
|
|||
USER node
|
||||
|
||||
RUN \
|
||||
npm ci && \
|
||||
npm install && \
|
||||
npm run build && \
|
||||
# TODO: removing dev dependecies is deleting `bn.js`, which breaks the Snowflake node
|
||||
npm prune --omit=dev && \
|
||||
|
|
62
package-lock.json
generated
62
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "n8n",
|
||||
"version": "0.193.5",
|
||||
"version": "0.194.0",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "n8n",
|
||||
"version": "0.193.5",
|
||||
"version": "0.194.0",
|
||||
"workspaces": [
|
||||
"packages/*",
|
||||
"packages/@n8n_io/*"
|
||||
|
@ -52256,7 +52256,7 @@
|
|||
},
|
||||
"packages/cli": {
|
||||
"name": "n8n",
|
||||
"version": "0.193.5",
|
||||
"version": "0.194.0",
|
||||
"license": "SEE LICENSE IN LICENSE.md",
|
||||
"dependencies": {
|
||||
"@oclif/command": "^1.5.18",
|
||||
|
@ -52300,10 +52300,10 @@
|
|||
"lodash.split": "^4.4.2",
|
||||
"lodash.unset": "^4.5.2",
|
||||
"mysql2": "~2.3.0",
|
||||
"n8n-core": "~0.133.3",
|
||||
"n8n-editor-ui": "~0.159.4",
|
||||
"n8n-nodes-base": "~0.191.3",
|
||||
"n8n-workflow": "~0.115.1",
|
||||
"n8n-core": "~0.134.0",
|
||||
"n8n-editor-ui": "~0.160.0",
|
||||
"n8n-nodes-base": "~0.192.0",
|
||||
"n8n-workflow": "~0.116.0",
|
||||
"nodemailer": "^6.7.1",
|
||||
"oauth-1.0a": "^2.2.6",
|
||||
"open": "^7.0.0",
|
||||
|
@ -52382,7 +52382,7 @@
|
|||
},
|
||||
"packages/core": {
|
||||
"name": "n8n-core",
|
||||
"version": "0.133.3",
|
||||
"version": "0.134.0",
|
||||
"license": "SEE LICENSE IN LICENSE.md",
|
||||
"dependencies": {
|
||||
"axios": "^0.21.1",
|
||||
|
@ -52394,7 +52394,7 @@
|
|||
"form-data": "^4.0.0",
|
||||
"lodash.get": "^4.4.2",
|
||||
"mime-types": "^2.1.27",
|
||||
"n8n-workflow": "~0.115.1",
|
||||
"n8n-workflow": "~0.116.0",
|
||||
"oauth-1.0a": "^2.2.6",
|
||||
"p-cancelable": "^2.0.0",
|
||||
"qs": "^6.10.1",
|
||||
|
@ -52481,7 +52481,7 @@
|
|||
},
|
||||
"packages/design-system": {
|
||||
"name": "n8n-design-system",
|
||||
"version": "0.33.1",
|
||||
"version": "0.34.0",
|
||||
"license": "SEE LICENSE IN LICENSE.md",
|
||||
"dependencies": {
|
||||
"element-ui": "~2.15.7",
|
||||
|
@ -52548,14 +52548,14 @@
|
|||
},
|
||||
"packages/editor-ui": {
|
||||
"name": "n8n-editor-ui",
|
||||
"version": "0.159.4",
|
||||
"version": "0.160.0",
|
||||
"license": "SEE LICENSE IN LICENSE.md",
|
||||
"dependencies": {
|
||||
"@fontsource/open-sans": "^4.5.0",
|
||||
"@fortawesome/free-regular-svg-icons": "^6.1.1",
|
||||
"luxon": "^2.3.0",
|
||||
"monaco-editor": "^0.30.1",
|
||||
"n8n-design-system": "~0.33.1",
|
||||
"n8n-design-system": "~0.34.0",
|
||||
"timeago.js": "^4.0.2",
|
||||
"v-click-outside": "^3.1.2",
|
||||
"vue-fragment": "1.5.1",
|
||||
|
@ -52600,7 +52600,7 @@
|
|||
"lodash.get": "^4.4.2",
|
||||
"lodash.set": "^4.3.2",
|
||||
"monaco-editor-webpack-plugin": "^5.0.0",
|
||||
"n8n-workflow": "~0.115.1",
|
||||
"n8n-workflow": "~0.116.0",
|
||||
"normalize-wheel": "^1.0.1",
|
||||
"prismjs": "^1.17.1",
|
||||
"quill": "^2.0.0-dev.3",
|
||||
|
@ -52626,7 +52626,7 @@
|
|||
},
|
||||
"packages/node-dev": {
|
||||
"name": "n8n-node-dev",
|
||||
"version": "0.72.1",
|
||||
"version": "0.73.0",
|
||||
"license": "SEE LICENSE IN LICENSE.md",
|
||||
"dependencies": {
|
||||
"@oclif/command": "^1.5.18",
|
||||
|
@ -52634,8 +52634,8 @@
|
|||
"change-case": "^4.1.1",
|
||||
"copyfiles": "^2.1.1",
|
||||
"inquirer": "^7.0.1",
|
||||
"n8n-core": "~0.133.3",
|
||||
"n8n-workflow": "~0.115.0",
|
||||
"n8n-core": "~0.134.0",
|
||||
"n8n-workflow": "~0.116.0",
|
||||
"oauth-1.0a": "^2.2.6",
|
||||
"replace-in-file": "^6.0.0",
|
||||
"request": "^2.88.2",
|
||||
|
@ -52658,7 +52658,7 @@
|
|||
},
|
||||
"packages/nodes-base": {
|
||||
"name": "n8n-nodes-base",
|
||||
"version": "0.191.3",
|
||||
"version": "0.192.0",
|
||||
"license": "SEE LICENSE IN LICENSE.md",
|
||||
"dependencies": {
|
||||
"@kafkajs/confluent-schema-registry": "1.0.6",
|
||||
|
@ -52693,7 +52693,7 @@
|
|||
"mqtt": "4.2.6",
|
||||
"mssql": "^8.1.2",
|
||||
"mysql2": "~2.3.0",
|
||||
"n8n-core": "~0.133.3",
|
||||
"n8n-core": "~0.134.0",
|
||||
"node-html-markdown": "^1.1.3",
|
||||
"node-ssh": "^12.0.0",
|
||||
"nodemailer": "^6.7.1",
|
||||
|
@ -52750,7 +52750,7 @@
|
|||
"eslint-plugin-n8n-nodes-base": "^1.9.1",
|
||||
"gulp": "^4.0.0",
|
||||
"jest": "^27.4.7",
|
||||
"n8n-workflow": "~0.115.1",
|
||||
"n8n-workflow": "~0.116.0",
|
||||
"ts-jest": "^27.1.3",
|
||||
"tslint": "^6.1.2",
|
||||
"typescript": "~4.6.0"
|
||||
|
@ -52783,7 +52783,7 @@
|
|||
},
|
||||
"packages/workflow": {
|
||||
"name": "n8n-workflow",
|
||||
"version": "0.115.1",
|
||||
"version": "0.116.0",
|
||||
"license": "SEE LICENSE IN LICENSE.md",
|
||||
"dependencies": {
|
||||
"@n8n_io/riot-tmpl": "^1.0.1",
|
||||
|
@ -81663,10 +81663,10 @@
|
|||
"lodash.split": "^4.4.2",
|
||||
"lodash.unset": "^4.5.2",
|
||||
"mysql2": "~2.3.0",
|
||||
"n8n-core": "~0.133.3",
|
||||
"n8n-editor-ui": "~0.159.4",
|
||||
"n8n-nodes-base": "~0.191.3",
|
||||
"n8n-workflow": "~0.115.1",
|
||||
"n8n-core": "~0.134.0",
|
||||
"n8n-editor-ui": "~0.160.0",
|
||||
"n8n-nodes-base": "~0.192.0",
|
||||
"n8n-workflow": "~0.116.0",
|
||||
"nodemailer": "^6.7.1",
|
||||
"nodemon": "^2.0.2",
|
||||
"oauth-1.0a": "^2.2.6",
|
||||
|
@ -81720,7 +81720,7 @@
|
|||
"jest": "^27.4.7",
|
||||
"lodash.get": "^4.4.2",
|
||||
"mime-types": "^2.1.27",
|
||||
"n8n-workflow": "~0.115.1",
|
||||
"n8n-workflow": "~0.116.0",
|
||||
"oauth-1.0a": "^2.2.6",
|
||||
"p-cancelable": "^2.0.0",
|
||||
"qs": "^6.10.1",
|
||||
|
@ -81865,8 +81865,8 @@
|
|||
"luxon": "^2.3.0",
|
||||
"monaco-editor": "^0.30.1",
|
||||
"monaco-editor-webpack-plugin": "^5.0.0",
|
||||
"n8n-design-system": "~0.33.1",
|
||||
"n8n-workflow": "~0.115.1",
|
||||
"n8n-design-system": "~0.34.0",
|
||||
"n8n-workflow": "~0.116.0",
|
||||
"normalize-wheel": "^1.0.1",
|
||||
"prismjs": "^1.17.1",
|
||||
"quill": "^2.0.0-dev.3",
|
||||
|
@ -81913,8 +81913,8 @@
|
|||
"change-case": "^4.1.1",
|
||||
"copyfiles": "^2.1.1",
|
||||
"inquirer": "^7.0.1",
|
||||
"n8n-core": "~0.133.3",
|
||||
"n8n-workflow": "~0.115.0",
|
||||
"n8n-core": "~0.134.0",
|
||||
"n8n-workflow": "~0.116.0",
|
||||
"oauth-1.0a": "^2.2.6",
|
||||
"replace-in-file": "^6.0.0",
|
||||
"request": "^2.88.2",
|
||||
|
@ -81991,8 +81991,8 @@
|
|||
"mqtt": "4.2.6",
|
||||
"mssql": "^8.1.2",
|
||||
"mysql2": "~2.3.0",
|
||||
"n8n-core": "~0.133.3",
|
||||
"n8n-workflow": "~0.115.1",
|
||||
"n8n-core": "~0.134.0",
|
||||
"n8n-workflow": "~0.116.0",
|
||||
"node-html-markdown": "^1.1.3",
|
||||
"node-ssh": "^12.0.0",
|
||||
"nodemailer": "^6.7.1",
|
||||
|
|
Loading…
Reference in a new issue