Skip to content

Commit

Permalink
Update forgot password form styling and verbiage (#563)
Browse files Browse the repository at this point in the history
* Update forgot password form styling and verbage

* Fix login e2e test after password field placeholder change

* Add playwright github action reporter

* Fix github actions order of operations so dependency caching can be used
  • Loading branch information
StevenWeathers committed Apr 7, 2024
1 parent acfe00f commit 0ebd6d9
Show file tree
Hide file tree
Showing 36 changed files with 345 additions and 122 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,14 @@ jobs:
--health-retries 5
steps:
- name: Check out code
uses: actions/checkout@v4

- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}

- name: Check out code into the Go module directory
uses: actions/checkout@v4

- name: Set up Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,14 +12,14 @@ jobs:
go-version: [ "1.22" ]

steps:
- name: Check out code
uses: actions/checkout@v4

- name: Set up Go ${{ matrix.go-version }}
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}

- name: Check out code into the Go module directory
uses: actions/checkout@v4

- name: Copy swagger docs dummy file and Create dummy ui/dist/index.html
run: mkdir ui/dist && touch ui/dist/index.html

Expand Down
2 changes: 1 addition & 1 deletion e2e/fixtures/login-page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export class LoginPage {

constructor(page: Page) {
this.emailField = page.getByPlaceholder("Enter your email");
this.passwordField = page.getByPlaceholder("Enter a password");
this.passwordField = page.getByPlaceholder("Enter your password");
this.page = page;
}

Expand Down

0 comments on commit 0ebd6d9

Please sign in to comment.