Skip to content

Commit 6586053

Browse files
committed
ci: add pre-release workflow with pkg-pr-new
1 parent c27a850 commit 6586053

File tree

3 files changed

+331
-6
lines changed

3 files changed

+331
-6
lines changed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: "Playwright for Cloudflare - Pre-Release"
2+
permissions:
3+
contents: read
4+
5+
on:
6+
push:
7+
pull_request:
8+
9+
jobs:
10+
test_smoke:
11+
runs-on: ubuntu-latest
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: actions/setup-node@v4
15+
with:
16+
node-version: '20.x'
17+
registry-url: 'https://registry.npmjs.org'
18+
19+
- name: Generate Pre-Release
20+
run: |
21+
npm ci
22+
cd packages/playwright-cloudflare
23+
npm run build
24+
npx pkg-pr-new publish

0 commit comments

Comments
 (0)