Skip to content

Commit

Permalink
Support iDEAL 2.0 flow (#91)
Browse files Browse the repository at this point in the history
* Support iDEAL 2.0 flow

* Update GitHub actions
  • Loading branch information
gcatanese authored Sep 18, 2024
1 parent 0c8f754 commit 52367fd
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,29 +20,29 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v1
uses: docker/setup-qemu-action@v3

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

- name: Log in to the Container registry
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v1
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}

- name: Build and push Docker image
uses: docker/build-push-action@v2
uses: docker/build-push-action@v6
with:
context: .
platforms: linux/amd64,linux/arm64
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ const { test, expect } = require('@playwright/test');
test('iDEAL', async ({ page }) => {
await page.goto('/');

await expect(page).toHaveTitle(/Checkout Demo Advanced/);
await expect(page).toHaveTitle(/Checkout Demo/);
await expect(page.locator('text="Select a demo"')).toBeVisible();

// Select "iDEAL"
Expand Down

0 comments on commit 52367fd

Please sign in to comment.