Skip to content

Commit

Permalink
temporarily disabling tests while we work through supporting fork bui…
Browse files Browse the repository at this point in the history
…lds (#613)
  • Loading branch information
robgruen authored Jan 28, 2025
1 parent 846a2f2 commit cbe3b16
Showing 1 changed file with 34 additions and 33 deletions.
67 changes: 34 additions & 33 deletions .github/workflows/build-ts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,36 +85,37 @@ jobs:
working-directory: ts
run: |
npm run lint
- name: Login to Azure
if: ${{ github.event_name != 'merge_group' }}
uses: azure/[email protected]
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/[email protected]
# 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

0 comments on commit cbe3b16

Please sign in to comment.