Feature/soknad avroskjema fra ghb #193
Workflow file for this run
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: Run end-to-end-tests on pull-requests | |
on: | |
pull_request: | |
jobs: | |
run-end-to-end-tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: 21 | |
cache: 'maven' | |
- name: 'Build the code for soknadsmottaker (this PR)' | |
uses: navikt/archiving-infrastructure/.github/checkout-and-build@main | |
with: | |
component_name: soknadsmottaker | |
branch: ${GITHUB_HEAD_REF} # Branch of current PR | |
- name: 'Build the code for innsending-api' | |
uses: navikt/archiving-infrastructure/.github/checkout-and-build@main | |
with: | |
component_name: innsending-api | |
- name: 'Build the code for soknadsarkiverer' | |
uses: navikt/archiving-infrastructure/.github/checkout-and-build@main | |
with: | |
component_name: soknadsarkiverer | |
- name: 'Build the code for arkiv-mock' | |
uses: navikt/archiving-infrastructure/.github/checkout-and-build@main | |
with: | |
component_name: arkiv-mock | |
- name: 'Run the end-to-end-tests' | |
uses: navikt/archiving-infrastructure/.github/checkout-and-build@main | |
with: | |
component_name: archiving-infrastructure | |
sub_directory: system-tests | |
skip_tests: false | |
run_docker_build: false |