Skip to content

Bump org.springframework.boot:spring-boot-maven-plugin from 3.3.5 to 3.4.1 #286

Bump org.springframework.boot:spring-boot-maven-plugin from 3.3.5 to 3.4.1

Bump org.springframework.boot:spring-boot-maven-plugin from 3.3.5 to 3.4.1 #286

Workflow file for this run

name: E2E
on:
push:
branches: [ main ]
paths-ignore:
- '**/README.md'
- README.md
- .gitignore
- .gitpod.yml
- LICENSE
pull_request:
branches: [ main ]
paths-ignore:
- '**/README.md'
- README.md
- .gitignore
- .gitpod.yml
- LICENSE
jobs:
e2e:
runs-on: ubuntu-latest
name: E2E run
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Install Node dependencies
run: npm install
working-directory: react-app
- name: Run frontend
run: nohup npm start &
working-directory: react-app
- name: Setup java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Run backend
run: nohup mvn spring-boot:run &
env:
ADYEN_LEM_API_KEY: ${{ secrets.ADYEN_LEM_API_KEY }}
ADYEN_BCL_API_KEY: ${{ secrets.ADYEN_BCL_API_KEY }}
- name: Run testing suite
run: docker run --rm --name adyen-testing-suite -e PLAYWRIGHT_FOLDERNAME=afp -e URL=http://localhost:3000 -e AFP_USERNAME=${{ secrets.AFP_USERNAME }} -e ADYEN_HMAC_KEY=${{ secrets.ADYEN_HMAC_KEY }} --network host ghcr.io/adyen-examples/adyen-testing-suite:main