mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
ci: Fix Vue build issues (#3650)
* lock vue versions to patch. Not use docker cache in nightly builds * revert to using npm install
This commit is contained in:
parent
07b6cffdba
commit
0af3ccf35f
1
.github/workflows/docker-images-nightly.yml
vendored
1
.github/workflows/docker-images-nightly.yml
vendored
|
@ -58,6 +58,7 @@ jobs:
|
||||||
platforms: linux/amd64
|
platforms: linux/amd64
|
||||||
push: true
|
push: true
|
||||||
tags: n8nio/n8n:${{ github.event.inputs.tag || 'nightly' }}
|
tags: n8nio/n8n:${{ github.event.inputs.tag || 'nightly' }}
|
||||||
|
no-cache: true
|
||||||
- name: Call Success URL - optionally
|
- name: Call Success URL - optionally
|
||||||
run: |
|
run: |
|
||||||
[[ "${{github.event.inputs.success-url}}" != "" ]] && curl -v ${{github.event.inputs.success-url}} || echo ""
|
[[ "${{github.event.inputs.success-url}}" != "" ]] && curl -v ${{github.event.inputs.success-url}} || echo ""
|
||||||
|
|
2
.github/workflows/test-workflows.yml
vendored
2
.github/workflows/test-workflows.yml
vendored
|
@ -45,7 +45,7 @@ jobs:
|
||||||
name: npm install and build
|
name: npm install and build
|
||||||
run: |
|
run: |
|
||||||
cd n8n
|
cd n8n
|
||||||
npm ci
|
npm install
|
||||||
npm run bootstrap
|
npm run bootstrap
|
||||||
npm run build --if-present
|
npm run build --if-present
|
||||||
env:
|
env:
|
||||||
|
|
2
.github/workflows/tests.yml
vendored
2
.github/workflows/tests.yml
vendored
|
@ -21,7 +21,7 @@ jobs:
|
||||||
node-version: ${{ matrix.node-version }}
|
node-version: ${{ matrix.node-version }}
|
||||||
- name: npm install, build, and test
|
- name: npm install, build, and test
|
||||||
run: |
|
run: |
|
||||||
npm ci
|
npm install
|
||||||
npm run bootstrap
|
npm run bootstrap
|
||||||
npm run build --if-present
|
npm run build --if-present
|
||||||
npm test
|
npm test
|
||||||
|
|
|
@ -83,11 +83,11 @@
|
||||||
"vite": "2.9.5",
|
"vite": "2.9.5",
|
||||||
"vite-plugin-vue2": "1.9.3",
|
"vite-plugin-vue2": "1.9.3",
|
||||||
"vitest": "0.9.3",
|
"vitest": "0.9.3",
|
||||||
"vue": "^2.6.11",
|
"vue": "~2.6.11",
|
||||||
"vue-class-component": "^7.2.3",
|
"vue-class-component": "^7.2.3",
|
||||||
"vue-loader": "^15.9.7",
|
"vue-loader": "^15.9.7",
|
||||||
"vue-property-decorator": "^9.1.2",
|
"vue-property-decorator": "^9.1.2",
|
||||||
"vue-template-compiler": "^2.6.11",
|
"vue-template-compiler": "~2.6.11",
|
||||||
"vue-typed-mixins": "^0.2.0",
|
"vue-typed-mixins": "^0.2.0",
|
||||||
"vue2-boring-avatars": "0.3.4",
|
"vue2-boring-avatars": "0.3.4",
|
||||||
"vue-tsc": "0.34.8",
|
"vue-tsc": "0.34.8",
|
||||||
|
|
|
@ -91,13 +91,13 @@
|
||||||
"tslint": "^6.1.2",
|
"tslint": "^6.1.2",
|
||||||
"typescript": "~4.6.0",
|
"typescript": "~4.6.0",
|
||||||
"uuid": "^8.3.2",
|
"uuid": "^8.3.2",
|
||||||
"vue": "^2.6.11",
|
"vue": "~2.6.11",
|
||||||
"vue-agile": "^2.0.0",
|
"vue-agile": "^2.0.0",
|
||||||
"vue-cli-plugin-webpack-bundle-analyzer": "^2.0.0",
|
"vue-cli-plugin-webpack-bundle-analyzer": "^2.0.0",
|
||||||
"vue-json-pretty": "1.7.1",
|
"vue-json-pretty": "1.7.1",
|
||||||
"vue-prism-editor": "^0.3.0",
|
"vue-prism-editor": "^0.3.0",
|
||||||
"vue-router": "^3.0.6",
|
"vue-router": "^3.0.6",
|
||||||
"vue-template-compiler": "^2.6.11",
|
"vue-template-compiler": "~2.6.11",
|
||||||
"vue-typed-mixins": "^0.2.0",
|
"vue-typed-mixins": "^0.2.0",
|
||||||
"vue2-touch-events": "^3.2.1",
|
"vue2-touch-events": "^3.2.1",
|
||||||
"vuex": "^3.1.1"
|
"vuex": "^3.1.1"
|
||||||
|
|
Loading…
Reference in a new issue