feat: add react router entry point #72
Workflow file for this run
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: π Release (preview) | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- ./packages/* | |
tags: | |
- "!**" | |
pull_request: | |
branches: [main] | |
jobs: | |
preview: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: β Enable corepack | |
run: corepack enable | |
- name: β Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: "pnpm" | |
- name: π§ Install dependencies | |
run: pnpm install --recursive --frozen-lockfile --strict-peer-dependencies | |
- name: π Setup npm auth | |
run: | | |
echo "registry=https://registry.npmjs.org" >> ~/.npmrc | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc | |
- name: π§ Set publish-branch to current branch | |
run: | | |
echo "publish-branch=$(git branch --show-current)" >> ~/.npmrc | |
- name: ποΈ Build | |
run: pnpm run build | |
- name: π¦ Package | |
run: pnpm run attw | |
- name: π Publish PR | |
run: pnpx pkg-pr-new publish --compact './packages/*' --template './examples/*' |