-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
temporarily disabling tests while we work through supporting fork bui…
…lds (#613)
- Loading branch information
Showing
1 changed file
with
34 additions
and
33 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|