Bump org.springframework.boot:spring-boot-maven-plugin from 3.3.5 to 3.4.1 #286
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |