fix(ci): daily-check shell从sh改为bash,修复PIPESTATUS Bad substitution #1023

Merged
xiaoxia merged 1 commits from fix/ci-daily-check-shell-bash into main 2026-07-27 11:39:29 +08:00
+4 -4
View File
@@ -29,7 +29,7 @@ jobs:
| bash
- name: Production health check & smoke test
id: smoke
shell: sh
shell: bash
env:
SMOKE_ENV: production
EXISTING_TOKEN: ${{ secrets.PROD_E2E_TOKEN }}
@@ -100,7 +100,7 @@ jobs:
| bash
- name: Run API smoke test on staging
id: smoke
shell: sh
shell: bash
env:
STAGING_TEST_USER: ${{ secrets.STAGING_TEST_USER }}
STAGING_TEST_PASSWORD: ${{ secrets.STAGING_TEST_PASSWORD }}
@@ -143,7 +143,7 @@ jobs:
- name: Run Staging API Integration Tests (Playwright)
id: e2e_api
shell: sh
shell: bash
run: |
set +e
START_TIME=$(date +%s)
@@ -214,7 +214,7 @@ jobs:
| bash
- name: Run Playwright E2E on staging
id: e2e
shell: sh
shell: bash
run: |
set +e
START_TIME=$(date +%s)