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 Preview Release | |
on: | |
pull_request: | |
types: [synchronize] | |
jobs: | |
approved: | |
if: contains(join(github.event.pull_request.labels.*.name, ','), 'publish-preview') | |
runs-on: ubuntu-latest | |
steps: | |
- name: 🛒 Checkout repo | |
uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v4 | |
- name: ⚒️ Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: '.nvmrc' | |
cache: 'pnpm' | |
- name: 📦 Install Dependencies | |
run: pnpm run bootstrap:project --filter react-image-turntable | |
- name: 🔨 Build | |
run: pnpm run --filter react-image-turntable build | |
- name: 🚀 Publish Preview Release | |
run: pnpx pkg-pr-new publish './lib' --template='./example' |