-
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
23 changed files
with
254 additions
and
236 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
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 |
---|---|---|
|
@@ -40,59 +40,59 @@ jobs: | |
- name: Setup Git LF | ||
run: | | ||
git config --global core.autocrlf false | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: dorny/paths-filter@v3 | ||
id: filter | ||
with: | ||
filters: | | ||
ts: | ||
- "ts/**" | ||
- ".github/workflows/build-ts.yml" | ||
- uses: pnpm/action-setup@v4 | ||
name: Install pnpm | ||
with: | ||
package_json_file: ts/package.json | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.version }} | ||
cache: "pnpm" | ||
cache-dependency-path: ts/pnpm-lock.yaml | ||
|
||
- name: Install dependencies (pnpm) | ||
working-directory: ts | ||
run: | | ||
pnpm install --frozen-lockfile --strict-peer-dependencies | ||
- name: Install Playwright Browsers | ||
run: pnpm exec playwright install --with-deps | ||
working-directory: ts/packages/shell | ||
|
||
- name: Build repo | ||
working-directory: ts | ||
run: | | ||
npm run build | ||
- name: Login to Azure | ||
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 | ||
run: | | ||
node tools/scripts/getKeys.mjs --vault build-pipeline-kv | ||
working-directory: ts | ||
|
||
- name: Test CLI - verify .env & endpoint connectivity | ||
run: | | ||
npm run start:dev 'prompt' 'why is the sky blue' | ||
working-directory: ts/packages/cli | ||
|
||
- name: Shell Tests (windows) | ||
if: ${{ runner.os == 'windows' }} | ||
timeout-minutes: 60 | ||
|
@@ -110,10 +110,10 @@ jobs: | |
sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0 | ||
Xvfb :99 -screen 0 1600x1200x24 & export DISPLAY=:99 | ||
npm run shell:test | ||
rm ../../.env | ||
rm ../../.env | ||
working-directory: ts/packages/shell | ||
continue-on-error: true | ||
|
||
- uses: actions/upload-artifact@v4 | ||
if: ${{ !cancelled() }} | ||
with: | ||
|
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
Oops, something went wrong.