-
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.
Merge branch 'main' into umeshma/dev
- Loading branch information
Showing
59 changed files
with
1,315 additions
and
501 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 |
---|---|---|
|
@@ -66,10 +66,6 @@ jobs: | |
working-directory: ts | ||
run: | | ||
pnpm install --frozen-lockfile --strict-peer-dependencies | ||
# - name: Install Playwright Browsers | ||
# if: ${{ runner.os == 'windows' && matrix.version == '22' }} | ||
# run: pnpm exec playwright install --with-deps | ||
# working-directory: ts/packages/shell | ||
- name: Build | ||
if: ${{ github.event_name != 'pull_request' || steps.filter.outputs.ts == 'true' }} | ||
working-directory: ts | ||
|
@@ -85,43 +81,3 @@ 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: | | ||
# 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 (windows) | ||
# if: ${{ github.event_name != 'merge_group' && runner.os == 'windows' && matrix.version == '22' }} | ||
# timeout-minutes: 60 | ||
# run: | | ||
# npx playwright test simple.spec.ts | ||
# rm ../../.env | ||
# - name: Shell Tests - smoke (linux) | ||
# if: ${{ github.event_name != 'merge_group' && runner.os == 'Linux' && matrix.version == '22' }} | ||
# timeout-minutes: 60 | ||
# run: | | ||
# Xvfb :99 -screen 0 1600x1200x24 & export DISPLAY=:99 | ||
# 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 |
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
121 changes: 0 additions & 121 deletions
121
.github/workflows/smoke-tests-pull_request_targets.yml.bak
This file was deleted.
Oops, something went wrong.
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
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
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 |
---|---|---|
|
@@ -45,6 +45,7 @@ steps: | |
# workspace-concurrency 0 means use use the CPU core count. This is better than the default (4) for larger agents. | ||
script: | | ||
echo "Using node $(node --version)" | ||
npm install -g [email protected] | ||
sudo corepack enable | ||
echo "Using pnpm $(pnpm -v)" | ||
pnpm config set store-dir ${{ parameters.pnpmStorePath }} | ||
|
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 |
---|---|---|
|
@@ -2,6 +2,7 @@ FROM node:20 AS base | |
|
||
ENV PNPM_HOME="/pnpm" | ||
ENV PATH="$PNPM_HOME:$PATH" | ||
RUN npm install -g [email protected] | ||
RUN corepack enable | ||
|
||
# Install dependencies required for Chrome/Puppeteer | ||
|
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 |
---|---|---|
|
@@ -48,7 +48,7 @@ | |
"prettier": "^3.2.5", | ||
"shx": "^0.3.4" | ||
}, | ||
"packageManager": "[email protected].4+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0", | ||
"packageManager": "[email protected].5+sha512.845196026aab1cc3f098a0474b64dfbab2afe7a1b4e91dd86895d8e4aa32a7a6d03049e2d0ad770bbe4de023a7122fb68c1a1d6e0d033c7076085f9d5d4800d4", | ||
"engines": { | ||
"node": ">=18", | ||
"pnpm": ">=9" | ||
|
Oops, something went wrong.