35 lines
1.0 KiB
YAML
35 lines
1.0 KiB
YAML
name: cr
|
|
on:
|
|
push:
|
|
branches: [main]
|
|
tags: ['!**'] # Avoid publishing on tags
|
|
pull_request:
|
|
types: [opened, synchronize, labeled] # Run on PR creation, updates, and when labels are added
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.number }} # Concurrency group for each PR
|
|
cancel-in-progress: true # Cancel in progress builds for the same PR
|
|
|
|
jobs:
|
|
publish:
|
|
if: github.repository == 'honojs/middleware' && (github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'cr-tracked'))
|
|
runs-on: ubuntu-latest
|
|
name: 'Publish: pkg.pr.new'
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20.x
|
|
|
|
- name: Install Dependencies
|
|
run: yarn
|
|
|
|
- name: Build
|
|
run: yarn workspaces foreach --all --topological --parallel --no-private run build
|
|
|
|
- name: Publish to StackBlitz
|
|
run: yarn pkg-pr-new publish --compact --no-template './packages/*'
|