From ce4fcb4cbebef32ba72a68b2f3e812574b8fcc74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juanjo=20L=C3=B3pez?= Date: Wed, 19 Jun 2024 14:55:57 +0200 Subject: [PATCH] Create report folder with .gitfile --- install.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/install.yaml b/install.yaml index ec86ae0..388c1ad 100644 --- a/install.yaml +++ b/install.yaml @@ -11,5 +11,6 @@ post_install_actions: - test -d ${DDEV_APPROOT}/tests/lighthouse/local || mkdir -p ${DDEV_APPROOT}/tests/lighthouse/local - test -d ${DDEV_APPROOT}/reports/lighthouse || mkdir -p ${DDEV_APPROOT}/reports/lighthouse - test -f "${DDEV_APPROOT}/tests/lighthouse/local/lighthouserc.js" || cp lighthouse/lighthouserc.js.example ${DDEV_APPROOT}/tests/lighthouse/local/lighthouserc.js - + - test -d ${DDEV_APPROOT}/reports/lighthouse || mkdir -p ${DDEV_APPROOT}/reports/lighthouse + - test -f "${DDEV_APPROOT}/reports/lighthouse/.gitfile" || touch ${DDEV_APPROOT}/reports/lighthouse/.gitfile - echo "Install finished. Please adjust tests in ${DDEV_APPROOT}/tests/lighthouse/local/lighthouserc.js."