We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c3a4a45 commit d045004Copy full SHA for d045004
1 file changed
.github/workflows/sonarqube.yml
@@ -11,6 +11,10 @@ jobs:
11
build:
12
name: Scan
13
runs-on: ubuntu-latest
14
+ strategy:
15
+ fail-fast: false # https://github.com/cypress-io/github-action/issues/48
16
+ matrix:
17
+ containers: [1, 2, 3] # Uses 2 parallel instances
18
19
steps:
20
########################################
@@ -63,11 +67,11 @@ jobs:
63
67
64
68
- name: Link vue-form-elements
65
69
working-directory: screen-builder
66
- run: npm link @processmaker/vue-form-elements
70
+ run: npm ci && npm link @processmaker/vue-form-elements
71
72
- name: Install screen-builder dependencies
73
- run: npm ci && npm run build-bundle
74
+ run: npm run build-bundle
75
76
77
# Run Cypress tests in parallel
0 commit comments