Skip to content

Commit a45bd5a

Browse files
authored
fix(tests): another iteration (#336)
1 parent 658e341 commit a45bd5a

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ jobs:
193193
- name: Build
194194
run: pnpm build
195195

196-
- run: pnpx pkg-pr-new publish
196+
- run: pnpm dlx pkg-pr-new publish
197197
```
198198
199199
#### Release approved pull requests only:
@@ -238,7 +238,7 @@ jobs:
238238
- name: Install dependencies
239239
run: pnpm install
240240

241-
- run: pnpx pkg-pr-new publish
241+
- run: pnpm dlx pkg-pr-new publish
242242
```
243243
244244
> Releasing approved pull requests is the recommended way of having continuous releases. This ensures users always install approved and safe packages.

Diff for: packages/backend/e2e.test.ts

+2
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,8 @@ describe.sequential.each([
176176
`/${owner}/${repo}/playground-b@${sha}`,
177177
);
178178
expect(response.status).toBe(200);
179+
const blob = await response.blob();
180+
expect(blob.size).toBeGreaterThan(0);
179181

180182
// Test installation
181183
const url = new URL(

0 commit comments

Comments
 (0)