-
Notifications
You must be signed in to change notification settings - Fork 1
48 lines (41 loc) · 942 Bytes
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
name: test
on:
push:
env:
LOG_LEVEL: debug
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 10
container: ghcr.io/visualon/renovate:38.57.0
strategy:
matrix:
file:
- default
- automergePatch
- automergeDigest
- fixes
- meta
- shared
- groups
- replacements
- ng
- vo
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
show-progress: false
- name: testing ${{ matrix.file }}
run: renovate-config-validator ${{ matrix.file }}.json
test-success:
runs-on: ubuntu-latest
needs:
- test
timeout-minutes: 1
if: always()
steps:
- name: Fail for failed or cancelled tests
if: |
needs.test.result == 'failure' ||
needs.test.result == 'cancelled'
run: exit 1