CI: debugging

Change-Id: I65b69f12842e9cf2974b42ce89fddac7ca7d0e31
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index b07a7cd..23360bb 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -33,6 +33,8 @@
     - R -e 'devtools::install_git("https://korap.ids-mannheim.de/gerrit/IDS-Mannheim/idsThemeR")'
     - R -e 'devtools::install(".")'
     - curl -O --output-dir /tmp/ https://gitlab.ids-mannheim.de/ICC/2023-07-20-ICC-ICLC10/-/raw/master/R/common.R
+    - cat /tmp/common.R
+    - R -e 'source("/tmp/common.R")'
     - end_section install_r_packages
 
   script:
diff --git a/examples/ids.Rmd b/examples/ids.Rmd
index 1d347b8..6e1a2a1 100644
--- a/examples/ids.Rmd
+++ b/examples/ids.Rmd
@@ -33,11 +33,7 @@
 library(RKorAPClient)
 library(highcharter)
 library(tidyverse)
-if (file.exists("/tmp/common.R")) {
-  source("/tmp/common.R")
-} else {
-  source("https://gitlab.ids-mannheim.de/ICC/2023-07-20-ICC-ICLC10/-/raw/master/R/common.R")
-}
+source("https://gitlab.ids-mannheim.de/ICC/2023-07-20-ICC-ICLC10/-/raw/master/R/common.R")
 ```
 
 ## R Markdown
@@ -100,7 +96,7 @@
     rightContextSize = 1,
     minOccur = 2,
     addExamples = T
-  ) %>% head(8)
+  ) %>% head(7)
 
 take_ca_icc %>% show_table()
 ```