mirror of
https://github.com/stack-auth/stack.git
synced 2026-06-04 21:04:37 +08:00
Merge branch 'dev' into fix-openrouter-proxy-bug
This commit is contained in:
commit
a9d5ed35d6
@ -48,5 +48,12 @@ jobs:
|
||||
tail: true
|
||||
wait-for: 120s
|
||||
log-output-if: true
|
||||
- name: Run tests
|
||||
- name: Run tests (first attempt)
|
||||
id: run-tests-first-attempt
|
||||
continue-on-error: ${{ (github.head_ref || github.ref_name) != 'main' && (github.head_ref || github.ref_name) != 'dev' }}
|
||||
run: pnpm run test run --reporter=verbose
|
||||
|
||||
# These tests are often flakey, as a temporary measure we retry them once.
|
||||
- name: Run tests (retry once on non-dev/main branches)
|
||||
if: ${{ (github.head_ref || github.ref_name) != 'main' && (github.head_ref || github.ref_name) != 'dev' && steps.run-tests-first-attempt.outcome == 'failure' }}
|
||||
run: pnpm run test run --reporter=verbose
|
||||
|
||||
9
.github/workflows/setup-tests.yaml
vendored
9
.github/workflows/setup-tests.yaml
vendored
@ -46,5 +46,12 @@ jobs:
|
||||
tail: true
|
||||
wait-for: 120s
|
||||
log-output-if: true
|
||||
- name: Run tests
|
||||
- name: Run tests (first attempt)
|
||||
id: run-tests-first-attempt
|
||||
continue-on-error: ${{ (github.head_ref || github.ref_name) != 'main' && (github.head_ref || github.ref_name) != 'dev' }}
|
||||
run: pnpm run test run --reporter=verbose
|
||||
|
||||
# These tests are often flakey, as a temporary measure we retry them once.
|
||||
- name: Run tests (retry once on non-dev/main branches)
|
||||
if: ${{ (github.head_ref || github.ref_name) != 'main' && (github.head_ref || github.ref_name) != 'dev' && steps.run-tests-first-attempt.outcome == 'failure' }}
|
||||
run: pnpm run test run --reporter=verbose
|
||||
|
||||
Loading…
Reference in New Issue
Block a user