From 3ff327a8cc14ec3a618f9d7562c1c219dea61def Mon Sep 17 00:00:00 2001 From: Jeroen de Bruijn Date: Wed, 18 Mar 2020 22:13:45 +0100 Subject: [PATCH] ci: add test configuration for the e2e test and example --- .github/workflows/example-basic.yml | 4 ++++ test/config.js | 8 ++++++++ 2 files changed, 12 insertions(+) create mode 100644 test/config.js diff --git a/.github/workflows/example-basic.yml b/.github/workflows/example-basic.yml index 7d56e640..63c96dc6 100644 --- a/.github/workflows/example-basic.yml +++ b/.github/workflows/example-basic.yml @@ -14,5 +14,9 @@ jobs: uses: actions/checkout@v2 with: fetch-depth: 0 + - name: ls + run: npm ci - name: Renovate uses: ./ + with: + configurationFile: 'test/config.js' diff --git a/test/config.js b/test/config.js new file mode 100644 index 00000000..e506d1fe --- /dev/null +++ b/test/config.js @@ -0,0 +1,8 @@ +module.exports = { + platform: 'github', + logFileLevel: 'warn', + logLevel: 'debug', + onboarding: false, + dryRun: true, + gitAuthor: 'Renovate Bot ', +};