There was an error while loading. Please reload this page.
1 parent 5ad7e53 commit 08825b1Copy full SHA for 08825b1
1 file changed
.github/workflows/ci.yml
@@ -30,8 +30,19 @@ jobs:
30
- run: pnpm build
31
- run: pnpm vitest --coverage
32
# - uses: codecov/codecov-action@v3
33
- - run: pnpm dlx pkg-pr-new publish
34
- if: ${{ matrix.os == 'ubuntu-latest' }}
+
+ publish-pkg-pr-new:
35
+ runs-on: ubuntu-latest
36
+ timeout-minutes: 10
37
+ steps:
38
+ - uses: actions/checkout@v6
39
+ with: { fetch-depth: 0 }
40
+ - run: npm i -fg corepack && corepack enable
41
+ - uses: actions/setup-node@v6
42
+ with: { node-version: lts/*, cache: "pnpm" }
43
+ - run: pnpm install
44
+ - run: pnpm build
45
+ - run: pnpm dlx pkg-pr-new publish || true
46
47
publish:
48
runs-on: ubuntu-latest
0 commit comments