Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,3 +68,22 @@ jobs:
name: playwright-report
path: tests/e2e/playwright-report/
retention-days: 14

docker:
runs-on: ubuntu-latest
needs: lint
steps:
- uses: actions/checkout@v6

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build Docker image
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: false
tags: simplemodule:ci
cache-from: type=gha
cache-to: type=gha,mode=max
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ public class MarketplaceModuleOptions : IModuleOptions
"https://api.nuget.org/v3/registration5-gz-semver2";
public string NuGetFlatContainerBaseAddress { get; set; } =
"https://api.nuget.org/v3-flatcontainer";
public List<string> VerifiedAuthors { get; set; } = ["antosubash"];
public List<string> VerifiedAuthors { get; set; } = ["SimpleModule"];
public int SearchCacheDurationMinutes { get; set; } = 5;
public int DetailCacheDurationMinutes { get; set; } = 10;
}
2 changes: 1 addition & 1 deletion tests/e2e/pages/marketplace/browse.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export class MarketplaceBrowsePage {
}

get heading() {
return this.page.getByRole('heading', { name: /marketplace|modules/i });
return this.page.getByRole('heading', { level: 1, name: /marketplace|modules/i });
}

get searchInput() {
Expand Down
Loading