Skip to content

Commit 13ed809

Browse files
committed
Run in parallel
1 parent 643c213 commit 13ed809

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/sonarqube.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ jobs:
1111
build:
1212
name: Scan
1313
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
1418

1519
steps:
1620
########################################
@@ -63,11 +67,11 @@ jobs:
6367

6468
- name: Link vue-form-elements
6569
working-directory: screen-builder
66-
run: npm link @processmaker/vue-form-elements
70+
run: npm ci && npm link @processmaker/vue-form-elements
6771

6872
- name: Install screen-builder dependencies
6973
working-directory: screen-builder
70-
run: npm ci && npm run build-bundle
74+
run: npm run build-bundle
7175

7276
########################################
7377
# Run Cypress tests in parallel

0 commit comments

Comments
 (0)