fix: add data-testid to new project button in EmptyFolder component (#9222)
This commit is contained in:
parent
86c54de508
commit
cb34e4fe80
10 changed files with 80 additions and 60 deletions
3
.github/changes-filter.yaml
vendored
3
.github/changes-filter.yaml
vendored
|
|
@ -84,3 +84,6 @@ database:
|
|||
- "src/frontend/src/controllers/**"
|
||||
- "src/frontend/tests/core/features/**"
|
||||
- "src/frontend/tests/extended/features/**"
|
||||
|
||||
mainpage:
|
||||
- "src/frontend/src/pages/MainPage/**"
|
||||
|
|
|
|||
5
.github/workflows/typescript_test.yml
vendored
5
.github/workflows/typescript_test.yml
vendored
|
|
@ -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")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue