Skip to content

Commit

Permalink
minor(ci): code quality now independent
Browse files Browse the repository at this point in the history
  • Loading branch information
rigelk committed Mar 24, 2023
1 parent 90c8690 commit 44cca73
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ include:
- local: conf/gitlab-ci/*.gitlab-ci.yml

workflow:
name: '$PIPELINE_NAME'
name: $PIPELINE_NAME
rules:
- if: $CI_MERGE_REQUEST_IID # Run pipeline on Merge Requests
variables:
Expand All @@ -13,7 +13,7 @@ workflow:
PIPELINE_NAME: 'Release pipeline for $CI_COMMIT_TAG'
- if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH # Run pipeline on 'main' branch
variables:
PIPELINE_NAME: 'Publication pipeline'
PIPELINE_NAME: Publication pipeline

default:
interruptible: true
Expand Down
1 change: 1 addition & 0 deletions conf/gitlab-ci/test.gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ include:

code_quality:
extends: .runner_inria
needs: []
artifacts:
paths:
- gl-code-quality-report.json
Expand Down
3 changes: 1 addition & 2 deletions src/app/shared/nav/nav.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ import { networkSolution } from '@app/doc/network/solutions/networkSolution'
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class NavComponent implements OnDestroy {
@Input()
selected: Folder
@Input() selected: Folder

// Folders
public local: Folder
Expand Down

0 comments on commit 44cca73

Please sign in to comment.