[dependency] Bump org.springframework.cloud:spring-cloud-starter-contract-stub-runner from 4.1.0 to 4.1.1 #36
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: Deploy to dev | |
on: | |
pull_request: | |
types: [ ready_for_review, opened, synchronize ] | |
push: | |
branches: | |
- 'main' | |
jobs: | |
build-deploy: | |
name: "Build and deploy to main" | |
permissions: | |
contents: "read" | |
id-token: "write" | |
uses: navikt/bidrag-workflow/.github/workflows/deploy.yaml@main | |
secrets: inherit | |
with: | |
nais_variabler_filnavn: main.yaml | |
run-cucumber-tests: | |
runs-on: ubuntu-latest | |
name: Run cucumber tests | |
needs: build-deploy | |
if: ${{ always() && needs.build-deploy.outputs.deploy_suksess == 'true' }} | |
env: | |
INGRESS_CUCUMBER: https://bidrag-cucumber-cloud.ekstern.dev.nav.no | |
INGRESS_BEREGN_BARNEBIDRAG: https://bidrag-beregn-barnebidrag-rest.intern.dev.nav.no | |
steps: | |
- run: | | |
curl -H "Content-Type: application/json" -i \ | |
-H "Authorization: Basic ${{ secrets.BIDRAG_CUCUMBER_CLOUD_AUTH }}" \ | |
--request POST \ | |
--data '{"noContextPathForApps":["bidrag-beregn-barnebidrag-rest"],"ingressesForApps":[ | |
"${{ env.INGRESS_BEREGN_BARNEBIDRAG }}@tag:bidrag-beregn-barnebidrag-rest" | |
]}' \ | |
${{ env.INGRESS_CUCUMBER }}/bidrag-cucumber-cloud/run | tee .cucumber-result | |
cat .cucumber-result | grep HTTP/2 | grep -c 200 > /dev/null # fails if count is 0 (http status is not ok, aka http status code is not 200) |