From 82f7e0d4d1e1c65b5c3a0f2188e6a887dba3f649 Mon Sep 17 00:00:00 2001 From: Steve Faulkner Date: Mon, 1 Jun 2020 18:27:33 -0500 Subject: [PATCH] Initial yaml change --- .github/workflows/blank.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml index faf02007d..a7e538c61 100644 --- a/.github/workflows/blank.yml +++ b/.github/workflows/blank.yml @@ -67,6 +67,32 @@ jobs: EMULATOR_ENDPOINT: https://0.0.0.0:8081/ NODE_TLS_REJECT_UNAUTHORIZED: 0 CYPRESS_CACHE_FOLDER: ~/.cache/Cypress + endtoendprodcassandra: + name: "End to End Tests Prod" + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Use Node.js 12.x + uses: actions/setup-node@v1 + with: + node-version: 12.x + - name: Restore Cypress Binary Cache + uses: actions/cache@v2 + with: + path: ~/.cache/Cypress + key: ${{ runner.os }}-cypress-binary-cache + - name: End to End Tests + run: | + npm ci + npm start & + npm ci --prefix ./cypress + npm run test --prefix ./cypress + shell: bash + env: + EMULATOR_ENDPOINT: https://0.0.0.0:8081/ + NODE_TLS_REJECT_UNAUTHORIZED: 0 + CYPRESS_CACHE_FOLDER: ~/.cache/Cypress + CONNECTION_STRING: ${{ secrets.CASSANDRA_CONNECTION_STRING }} nuget: name: Publish Nuget needs: [build, test, endtoend]