Skip to content

Commit 32fcaf6

Browse files
committed
fix: add ^build dep to build:bridge, reorder release steps
1 parent c57c9e1 commit 32fcaf6

2 files changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,12 +123,12 @@ jobs:
123123
- name: Install dependencies
124124
run: pnpm install --no-frozen-lockfile
125125

126-
- name: Type check
127-
run: pnpm turbo check-types
128-
129126
- name: Build
130127
run: pnpm turbo build
131128

129+
- name: Type check
130+
run: pnpm turbo check-types
131+
132132
# Download all V8 platform binaries into their npm package dirs
133133
- name: Download V8 binaries
134134
uses: actions/download-artifact@v4

turbo.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"$schema": "https://turbo.build/schema.json",
33
"tasks": {
44
"build:bridge": {
5+
"dependsOn": ["^build"],
56
"outputs": ["dist/bridge.js"]
67
},
78
"build:polyfills": {},

0 commit comments

Comments
 (0)