chore(e2e): Update global patterns

Guard against regressions in template classes (see https://codeberg.org/forgejo/forgejo/pulls/5892 for example)
Fix broken frontend test patterns as per https://codeberg.org/forgejo/forgejo/pulls/5734#issuecomment-2406914
This commit is contained in:
Otto Richter 2024-11-10 14:35:40 +01:00
parent 3531710dc6
commit 7db3781abf

View file

@ -34,10 +34,11 @@ func initChangedFiles() {
"tests/e2e/*.go", "tests/e2e/*.go",
"tests/e2e/shared/*", "tests/e2e/shared/*",
// frontend files // frontend files
"frontend/*.js", "web_src/js/{index,utils}.*",
"frontend/{base,index}.css", "web_src/css/{base,index}.css",
// templates // templates and helpers
"templates/base/**", "templates/base/**",
"modules/templates/**",
} }
fullRunPatterns := []glob.Glob{} fullRunPatterns := []glob.Glob{}
for _, expr := range globalPatterns { for _, expr := range globalPatterns {