Skip to content

Commit bb7d820

Browse files
committed
ci: fix release flow
1 parent 569e2f6 commit bb7d820

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ jobs:
3232
- name: Install dependencies
3333
run: pnpm install --frozen-lockfile
3434
- name: Build
35-
run: pnpm -r --filter="!@examples/*-standalone*" build # pnpm build # Temporary fix to avoid flaky jobs with `postject` issues (needs more investigation).
35+
run: pnpm build
3636
- name: Check (static analysis including linters, types, and commit message)
3737
run: pnpm check
3838
- name: Test
39-
run: pnpm --filter quickbundle test # pnpm test # Temporary fix to avoid flaky jobs with `postject` issues (needs more investigation).
39+
run: pnpm test

examples/multiple-standalones/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"standaloneB": "./dist/standaloneB.js"
99
},
1010
"scripts": {
11-
"build": "pnpm build:local",
11+
"build:all": "pnpm build:local",
1212
"build:cross": "quickbundle compile --target node-v21.7.3-linux-arm64",
1313
"build:local": "quickbundle compile",
1414
"watch": "pnpm build"

examples/single-standalone/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"source": "./src/index.ts",
66
"bin": "./dist/index.cjs",
77
"scripts": {
8-
"build": "pnpm build:local",
8+
"build:all": "pnpm build:local",
99
"build:cross": "quickbundle compile --target node-v21.7.3-linux-arm64",
1010
"build:local": "quickbundle compile",
1111
"watch": "pnpm build"

0 commit comments

Comments
 (0)