From cbe3b1694a5cb9c408fc0e2fd68d60f6eb7aed83 Mon Sep 17 00:00:00 2001 From: robgruen Date: Tue, 28 Jan 2025 14:46:44 -0800 Subject: [PATCH] temporarily disabling tests while we work through supporting fork builds (#613) --- .github/workflows/build-ts.yml | 67 +++++++++++++++++----------------- 1 file changed, 34 insertions(+), 33 deletions(-) diff --git a/.github/workflows/build-ts.yml b/.github/workflows/build-ts.yml index 76ea717cd..f64f1eaf7 100644 --- a/.github/workflows/build-ts.yml +++ b/.github/workflows/build-ts.yml @@ -85,36 +85,37 @@ jobs: working-directory: ts run: | npm run lint - - name: Login to Azure - if: ${{ github.event_name != 'merge_group' }} - uses: azure/login@v2.2.0 - with: - client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_5B0D2D6BA40F4710B45721D2112356DD }} - tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_39BB903136F14B6EAD8F53A8AB78E3AA }} - subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_F36C1F2C4B2C49CA8DD5C52FAB98FA30 }} - - name: Get Keys - if: ${{ github.event_name != 'merge_group' }} - run: | - npm run getKeys:build - working-directory: ts - - name: Test CLI - smoke - if: ${{ github.event_name != 'merge_group' }} - run: | - npm run start:dev 'prompt' 'why is the sky blue' - working-directory: ts/packages/cli - continue-on-error: true - - name: Shell Tests - smoke - if: ${{ github.event_name != 'merge_group' && runner.os == 'windows' && matrix.version == '22' }} - timeout-minutes: 60 - run: | - npx playwright test simple.spec.ts - rm ../../.env - working-directory: ts/packages/shell - continue-on-error: true - - name: Live Tests - if: ${{ github.event_name != 'merge_group' && runner.os == 'linux' && matrix.version == '22' }} - timeout-minutes: 60 - run: | - npm run test:live - working-directory: ts - continue-on-error: true + # - name: Login to Azure + # if: ${{ github.event_name != 'merge_group' }} + # uses: azure/login@v2.2.0 + # with: + # client-id: ${{ secrets.AZUREAPPSERVICE_CLIENTID_5B0D2D6BA40F4710B45721D2112356DD }} + # tenant-id: ${{ secrets.AZUREAPPSERVICE_TENANTID_39BB903136F14B6EAD8F53A8AB78E3AA }} + # subscription-id: ${{ secrets.AZUREAPPSERVICE_SUBSCRIPTIONID_F36C1F2C4B2C49CA8DD5C52FAB98FA30 }} + # - name: Get Keys + # if: ${{ github.event_name != 'merge_group' }} + # run: | + # node tools/scripts/getKeys.mjs --vault build-pipeline-kv + # working-directory: ts + # - name: Test CLI - smoke + # if: ${{ github.event_name != 'merge_group' }} + # run: | + # npm run start:dev 'prompt' 'why is the sky blue' + # working-directory: ts/packages/cli + # continue-on-error: true + # - name: Shell Tests - smoke + # if: ${{ github.event_name != 'merge_group' && runner.os == 'windows' && matrix.version == '22' }} + # timeout-minutes: 60 + # run: | + # npx playwright test simple.spec.ts + # rm ../../.env + # working-directory: ts/packages/shell + # continue-on-error: true + # - name: Live Tests + # if: ${{ github.event_name != 'merge_group' && runner.os == 'linux' && matrix.version == '22' }} + # timeout-minutes: 60 + # run: | + # npm run test:live + # working-directory: ts + # continue-on-error: true +