NR-340027 Add input flag destPrefix to integrations test package action #276
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Push/PR pipeline | |
on: | |
push: | |
branches: | |
- main | |
- master | |
- renovate/** | |
pull_request: | |
jobs: | |
renovate-config-validator: | |
name: Renovatebot config validator | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Renovatebot config validator | |
run: npm install --global renovate | |
- name: Test that the config is valid | |
run: | | |
find -name renovate\*.json\* -exec renovate-config-validator {} \; || renovate-config-validator |