From 8e836c6e8edf981cb081dcc94a395bf5a3b1cd1e Mon Sep 17 00:00:00 2001 From: JM Faircloth Date: Wed, 5 Jul 2023 12:45:57 -0500 Subject: [PATCH] fix ordering of build steps --- .github/workflows/build.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 473292c..f57f451 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -180,11 +180,6 @@ jobs: secrets: | secret/data/subsequent-test secret | SUBSEQUENT_TEST_SECRET; - - name: Verify Vault Action Outputs - run: npm run test:integration:e2e - env: - OTHER_SECRET_OUTPUT: ${{ steps.kv-secrets.outputs.otherSecret }} - - name: Test Parsing Secrets (part 1/2) # this step sets up secres to be used in Test Parsing Secrets (part 2/2) uses: ./ @@ -201,6 +196,11 @@ jobs: run: | node ./scripts/parse.js + - name: Verify Vault Action Outputs + run: npm run test:integration:e2e + env: + OTHER_SECRET_OUTPUT: ${{ steps.kv-secrets.outputs.otherSecret }} + e2e-tls: runs-on: ubuntu-latest