From 22fd1fe6b65859c42f90ca70478843abfa1f0c55 Mon Sep 17 00:00:00 2001 From: alvarosabu Date: Fri, 20 Sep 2024 09:24:01 +0200 Subject: [PATCH] chore: add pkg.pr.new --- .github/workflows/pkg.pr.new.yml | 35 ++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/pkg.pr.new.yml diff --git a/.github/workflows/pkg.pr.new.yml b/.github/workflows/pkg.pr.new.yml new file mode 100644 index 00000000..3c271a7a --- /dev/null +++ b/.github/workflows/pkg.pr.new.yml @@ -0,0 +1,35 @@ +name: Publish Any Commit +on: + push: + branches: + - '**' + tags: + - '!**' + +env: + PNPM_CACHE_FOLDER: .pnpm-store + HUSKY: 0 # Bypass husky commit hook for CI + +permissions: {} + +concurrency: + group: ${{ github.workflow }}-${{ github.event.number }} + cancel-in-progress: true + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - run: corepack enable + - uses: actions/setup-node@v4 + with: + node-version: 18 + cache: pnpm + - name: Install dependencies + run: pnpm install + - name: Build + run: pnpm build + - run: pnpx pkg-pr-new publish --compact --pnpm