Skip to content

Commit 44cca73

Browse files
committed
minor(ci): code quality now independent
1 parent 90c8690 commit 44cca73

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.gitlab-ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ include:
33
- local: conf/gitlab-ci/*.gitlab-ci.yml
44

55
workflow:
6-
name: '$PIPELINE_NAME'
6+
name: $PIPELINE_NAME
77
rules:
88
- if: $CI_MERGE_REQUEST_IID # Run pipeline on Merge Requests
99
variables:
@@ -13,7 +13,7 @@ workflow:
1313
PIPELINE_NAME: 'Release pipeline for $CI_COMMIT_TAG'
1414
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH # Run pipeline on 'main' branch
1515
variables:
16-
PIPELINE_NAME: 'Publication pipeline'
16+
PIPELINE_NAME: Publication pipeline
1717

1818
default:
1919
interruptible: true

conf/gitlab-ci/test.gitlab-ci.yml

+1
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ include:
3535

3636
code_quality:
3737
extends: .runner_inria
38+
needs: []
3839
artifacts:
3940
paths:
4041
- gl-code-quality-report.json

src/app/shared/nav/nav.component.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,7 @@ import { networkSolution } from '@app/doc/network/solutions/networkSolution'
2727
changeDetection: ChangeDetectionStrategy.OnPush,
2828
})
2929
export class NavComponent implements OnDestroy {
30-
@Input()
31-
selected: Folder
30+
@Input() selected: Folder
3231

3332
// Folders
3433
public local: Folder

0 commit comments

Comments
 (0)