fix: add data-testid to new project button in EmptyFolder component (#9222)

This commit is contained in:
Gabriel Luiz Freitas Almeida 2025-07-29 08:56:14 -03:00 committed by GitHub
commit cb34e4fe80
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
10 changed files with 80 additions and 60 deletions

View file

@ -127,6 +127,11 @@ jobs:
TAGS+=("@database")
echo "Added database suite"
fi
if [[ "${{ steps.filter.outputs.mainpage }}" == "true" ]]; then
SUITES=$(echo $SUITES | jq -c '. += ["mainpage"]')
TAGS+=("@mainpage")
echo "Added mainpage suite"
fi
if [[ "${{ steps.filter.outputs.development }}" == "true" ]]; then
SUITES=$(echo $SUITES | jq -c '. += ["development"]')
TAGS+=("@development")