build(deps): bump org.apache.maven.plugins:maven-source-plugin from 3.2.1 to 3.3.1 #919
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: End to End Testing (Docker) | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
e2e-docker: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout frank-flow repository | |
uses: actions/checkout@v2 | |
- name: Use Node.js 21.x | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 21.x | |
- name: Build the backend | |
run: mvn install | |
- name: Cache local Maven repository | |
uses: actions/cache@v2 | |
env: | |
cache-name: cache-maven-dependencies | |
with: | |
path: ~/.m2/repository | |
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }} | |
restore-keys: | | |
${{ runner.os }}-maven- | |
- name: Run Cypress using the frank-framework Docker image | |
uses: cypress-io/[email protected] | |
with: | |
working-directory: frank-flow/src/frontend/ | |
build: yarn build | |
start: docker-compose up -d | |
wait-on: "http://localhost:8080/frank-flow/" | |
wait-on-timeout: 360 |