feat(config): add support for regular Renovate config files (#79)

This commit is contained in:
Jeroen de Bruijn 2020-05-11 21:55:07 +02:00 committed by GitHub
parent 3aa72249b9
commit fa9be0537a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 41 additions and 15 deletions

View file

@ -52,6 +52,10 @@ jobs:
e2e:
needs: [cleanup]
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
configurationFile: [example/renovate-config.js, example/renovate.json]
steps:
- name: Checkout
uses: actions/checkout@v2.1.0
@ -62,8 +66,9 @@ jobs:
- name: Renovate test
uses: ./
with:
configurationFile: example/renovate-config.js
configurationFile: ${{ matrix.configurationFile }}
token: ${{ secrets.RENOVATE_TOKEN }}
build:
needs: [lint, commitlint, e2e]
runs-on: ubuntu-latest