Bump the all-minor-patch group with 12 updates #226
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: | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: 'Build the code for soknadsmottaker' | |
uses: navikt/archiving-infrastructure/.github/checkout-and-build@main | |
with: | |
component_name: soknadsmottaker | |
- name: 'Build the code for soknadsfillager' | |
uses: navikt/archiving-infrastructure/.github/checkout-and-build@main | |
with: | |
component_name: soknadsfillager | |
- name: 'Build the code for soknadsarkiverer (this PR)' | |
uses: navikt/archiving-infrastructure/.github/checkout-and-build@main | |
with: | |
component_name: soknadsarkiverer | |
branch: ${GITHUB_HEAD_REF} # Branch of current PR | |
- 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 |