Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add pkg.pr.new to publish pr releases #12061

Merged
merged 3 commits into from
Sep 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .github/workflows/publish-pr-releases.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Pull Request Prerelease

on:
pull_request:
push:
branches:
- "**"
tags:
- "!**"

jobs:
prerelease:
name: Pull Request Prerelease
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4

- name: Setup Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.x

- name: Install dependencies with cache
uses: bahmutov/npm-install@v1

- name: Build and publish to pkg.pr.new
run: npm run pkg-pr-new-publish
594 changes: 567 additions & 27 deletions package-lock.json
2 changes: 2 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -63,6 +63,7 @@
"docmodel": "tsc && npm run inline-inherit-doc && ts-node-script config/apiExtractor.ts --main-only --generate docModel",
"changeset-publish": "npm run build && npm run prepdist:changesets && cd dist && changeset publish",
"changeset-check": "changeset status --verbose --since=origin/main",
"pkg-pr-new-publish": "npm run build && cd dist && pkg-pr-new publish --no-template --compact",
"changeset-version": "changeset version && npm i",
"update-size-limits": "size-limit --json | jq '. | map(select(.sizeLimit) | { key: .name, value: .size}) | from_entries' | tee .new-size-limits.json; mv .new-size-limits.json .size-limits.json"
},
@@ -162,6 +163,7 @@
"jest-junit": "16.0.0",
"lodash": "4.17.21",
"patch-package": "8.0.0",
"pkg-pr-new": "0.0.24",
"prettier": "3.1.1",
"react": "18.3.1",
"react-17": "npm:react@^17",