fix(ci): try fixing renovate

This commit is contained in:
Lukasz Mierzwa
2026-02-18 12:14:08 +00:00
committed by Łukasz Mierzwa
parent 478a473d0b
commit 397ed9f23d
2 changed files with 2 additions and 2 deletions

View File

@@ -20,7 +20,7 @@ jobs:
uses: renovatebot/github-action@v46.1.1
env:
RENOVATE_REPOSITORIES: ${{ github.repository }}
RENOVATE_ALLOWED_POST_UPGRADE_COMMANDS: '["^bash -c .npm install && npm test -- -u.$"]'
RENOVATE_ALLOWED_POST_UPGRADE_COMMANDS: '["^bash -c .cd ui && npm install && npm test -- -u.$"]'
with:
configurationFile: renovate.json
token: ${{ secrets.GH_REPO_TOKEN }}

View File

@@ -29,7 +29,7 @@
"description": "Update snapshots after npm upgrades",
"matchManagers": ["npm"],
"postUpgradeTasks": {
"commands": ["bash -c 'npm install && npm test -- -u'"],
"commands": ["bash -c 'cd ui && npm install && npm test -- -u'"],
"fileFilters": ["ui/src/**/__snapshots__/**"],
"executionMode": "branch"
}