Commit ac689e7c authored by Pierre Smeyers's avatar Pierre Smeyers
Browse files

docs: use variabilized GitLab server FQDN in CI/CD component reference URLs

parent bcb75a08
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -14,7 +14,7 @@ Add the following to your `.gitlab-ci.yml`:
```yaml
include:
  # 1: include the component
  - component: gitlab.com/to-be-continuous/lighthouse/gitlab-ci-lighthouse@1.3.0
  - component: $CI_SERVER_FQDN/to-be-continuous/lighthouse/gitlab-ci-lighthouse@1.3.0
    # 2: set/override component inputs
    inputs:
      review-enabled: true # ⚠ this is only an example
@@ -95,7 +95,7 @@ The easiest solution is to declare all the analysed urls in the `$LHCI_RUN_OPTS`

```yaml
include:
  - component: gitlab.com/to-be-continuous/lighthouse/gitlab-ci-lighthouse@1.3.0
  - component: $CI_SERVER_FQDN/to-be-continuous/lighthouse/gitlab-ci-lighthouse@1.3.0
    inputs:
      run-opts: >- 
    --upload.target=filesystem 
@@ -113,7 +113,7 @@ Another option could be to handle it in your JavaScript-based [configuration fil

```yaml
include:
  - component: gitlab.com/to-be-continuous/lighthouse/gitlab-ci-lighthouse@1.3.0
  - component: $CI_SERVER_FQDN/to-be-continuous/lighthouse/gitlab-ci-lighthouse@1.3.0
    inputs:
      run-opts: --upload.target=filesystem --collect.settings.chromeFlags=--no-sandbox
```