Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into bug/fix-deployment-…
Browse files Browse the repository at this point in the history
…status
  • Loading branch information
nkylstad committed Oct 21, 2023
2 parents 47a4b7b + 3647731 commit 132c2a7
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 3 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/build-image-on-pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Docker build
on:
pull_request:
branches: [ master ]
types: [opened, synchronize, reopened]
workflow_dispatch:

jobs:
docker-build:
name: Build image
runs-on: ubuntu-latest
container:
image: docker:latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Build image
run: |
docker build .
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export const ProfileMenu = ({

return (
<Button
variant='quiet'
variant='tertiary'
color='inverted'
onClick={handleClick}
data-testid={testids.profileButton}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
exports[`ProfileMenu should match snapshot 1`] = `
<button
aria-haspopup="true"
class="Button-module_button__oVUcI utility-module_focusable__y1VLB Button-module_medium__mNn-w Button-module_quiet__UEUaR Button-module_inverted__bikfA"
class="Button-module_button__oVUcI utility-module_focusable__y1VLB Button-module_medium__mNn-w Button-module_tertiary__eJ-qG Button-module_inverted__bikfA"
data-testid="profileButton"
type="button"
>
Expand All @@ -20,7 +20,7 @@ exports[`ProfileMenu should match snapshot 1`] = `
exports[`ProfileMenu should match snapshot with logout text 1`] = `
<button
aria-haspopup="true"
class="Button-module_button__oVUcI utility-module_focusable__y1VLB Button-module_medium__mNn-w Button-module_quiet__UEUaR Button-module_inverted__bikfA"
class="Button-module_button__oVUcI utility-module_focusable__y1VLB Button-module_medium__mNn-w Button-module_tertiary__eJ-qG Button-module_inverted__bikfA"
data-testid="profileButton"
type="button"
>
Expand Down

0 comments on commit 132c2a7

Please sign in to comment.