docs: Updated webpack to Rsbuild migration guide #38
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish PR packages | |
# PNPM setup based on https://github.com/pnpm/action-setup#use-cache-to-reduce-installation-time | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
env: | |
CI: true | |
concurrency: | |
group: pr-pkg-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
run_install: false | |
- name: Install Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ">=22.0.0" | |
check-latest: true | |
cache: pnpm | |
cache-dependency-path: pnpm-lock.yaml | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Restore Turborepo cache | |
id: cache-turborepo-restore | |
uses: actions/cache/restore@v4 | |
with: | |
key: ${{ runner.os }}-turborepo-${{ github.sha }} | |
restore-keys: | | |
${{ runner.os }}-turborepo- | |
path: .turbo | |
- name: Build packages | |
run: pnpm build-pkg | |
- name: Save Turborepo cache | |
id: cache-turborepo-save | |
if: always() && steps.cache-turborepo-restore.outputs.cache-hit != 'true' | |
uses: actions/cache/save@v4 | |
with: | |
key: ${{ steps.cache-turborepo-restore.outputs.cache-primary-key }} | |
path: .turbo | |
- name: Publish PR packages | |
run: pnpm publish-pr-pkg |