Skip to content

Commit e5958e9

Browse files
ianzoneyoyo837
andauthored
test(babel-plugin-transform-react-jsx-to-rn-stylesheet): jest to vitest (#18146)
* test(babel-plugin-transform-react-jsx-to-rn-stylesheet): jest to vitest * fix: type err * fix: type err * chore: full build [no ci] * fix: type err * fix: null case * test: root vitest * fix: typo * chore: 限制CI时长为30min * chore: aggregate output * chore: fail fast --------- Co-authored-by: Amumu <[email protected]>
1 parent 54c1c98 commit e5958e9

File tree

12 files changed

+1536
-785
lines changed

12 files changed

+1536
-785
lines changed

.github/workflows/nodejs.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ on:
2020
permissions:
2121
contents: read # to fetch code (actions/checkout)
2222

23+
concurrency:
24+
group: ${{ github.workflow }}-${{ github.ref }}
25+
cancel-in-progress: true
26+
2327
jobs:
2428
build-rust-binding:
2529
name: Build Rust Binding
@@ -34,7 +38,6 @@ jobs:
3438
- build-rust-binding
3539
- build-rust-wasm
3640
strategy:
37-
fail-fast: false
3841
matrix:
3942
node-version: [18.x, 20.x]
4043
host: [macos-13, windows-latest, ubuntu-latest]
@@ -58,6 +61,7 @@ jobs:
5861
host: windows-latest
5962

6063
runs-on: ${{ matrix.host }}
64+
timeout-minutes: 30
6165
steps:
6266
- name: Checkout
6367
uses: actions/checkout@v4

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"scripts": {
2121
"preinstall": "npx only-allow pnpm",
2222
"prepare": "husky install",
23-
"build": "pnpm -r --filter=./packages/* prod",
23+
"build": "pnpm -r --aggregate-output --filter=./packages/* prod",
2424
"build:binding:debug": "pnpm --filter @tarojs/binding run build:debug",
2525
"build:binding:release": "pnpm --filter @tarojs/binding run build",
2626
"debug": "node scripts/debug.js",

0 commit comments

Comments
 (0)