Skip to content

Commit f4308b9

Browse files
authored
release: v1.0.13 (#486)
* release: v1.0.13 * fix(ci): always ensure playwright browser binaries in standard path * fix(ci): install playwright browsers for non-code-change checks
1 parent 92eb852 commit f4308b9

4 files changed

Lines changed: 14 additions & 10 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -103,20 +103,18 @@ jobs:
103103
run: pnpm install --frozen-lockfile
104104

105105
- name: Cache Playwright browsers
106-
if: steps.changes.outputs.code == 'true'
107106
id: playwright-cache
108107
uses: actions/cache@v4
109108
with:
110109
path: ~/.cache/ms-playwright
111110
key: playwright-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}
112111

113-
- name: Install Playwright
114-
if: steps.changes.outputs.code == 'true' && steps.playwright-cache.outputs.cache-hit != 'true'
112+
- name: Install Playwright deps
113+
if: steps.playwright-cache.outputs.cache-hit != 'true'
115114
run: pnpm exec playwright install --with-deps chromium webkit
116115

117-
- name: Install Playwright deps
118-
if: steps.changes.outputs.code == 'true' && steps.playwright-cache.outputs.cache-hit == 'true'
119-
run: pnpm exec playwright install-deps chromium webkit
116+
- name: Ensure Playwright browsers
117+
run: pnpm exec playwright install chromium webkit chromium-headless-shell
120118

121119
- name: Run all checks
122120
env:

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# 更新日志
22

3+
## [1.0.13] - 2026-02-28
4+
5+
fix CI fallback gating and stabilize miniapp test setup in CI
6+
7+
<!-- last-commit: 92eb85244abc099c81b77bbbe45add7896787896 -->
8+
39
## [1.0.12] - 2026-02-27
410

511
fix: recover correct BSC sender for biobridge recharge signing

manifest.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@
1818
"author": [
1919
"@bfmeta.info"
2020
],
21-
"version": "1.0.12",
22-
"change_log": "fix: recover correct BSC sender for biobridge recharge signing",
21+
"version": "1.0.13",
22+
"change_log": "fix CI fallback gating and stabilize miniapp test setup in CI",
2323
"categories": [
2424
"application",
2525
"wallet"

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@biochain/keyapp",
33
"private": true,
4-
"version": "1.0.12",
4+
"version": "1.0.13",
55
"type": "module",
66
"packageManager": "pnpm@10.28.0",
77
"scripts": {
@@ -218,5 +218,5 @@
218218
"packages/*",
219219
"miniapps/*"
220220
],
221-
"lastChangelogCommit": "922b0ceeb4fc2865d5f3825a9ea2114c4eac2703"
221+
"lastChangelogCommit": "92eb85244abc099c81b77bbbe45add7896787896"
222222
}

0 commit comments

Comments
 (0)