We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47bb239 commit f3181e7Copy full SHA for f3181e7
.github/workflows/pr-release.yaml
@@ -26,7 +26,9 @@ jobs:
26
npm-token: ${{ secrets.NPM_TOKEN }}
27
28
- name: Build packages
29
- run: pnpm build:libs
+ run: |
30
+ pnpm ts-check
31
+ pnpm build:all
32
33
- name: Release to @pr-${{ github.event.pull_request.number }} tag on npm
34
id: release
packages/playwright-utils/package.json
@@ -19,8 +19,9 @@
19
},
20
"files": ["dist"],
21
"scripts": {
22
+ "ts:check": "pnpm tsc --noEmit",
23
"build": "pnpm ts:check && tsup",
- "ts:check": "pnpm tsc --noEmit"
24
+ "build:all": "pnpm build"
25
"dependencies": {
"adm-zip": "^0.5.10"
0 commit comments