Skip to content

Commit

Permalink
feat: pkg.pr.new (#1286)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aslemammad authored Aug 28, 2024
1 parent 9026802 commit 6ccde98
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/cr.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Continuous Releases

on:
push:
pull_request:

jobs:
release:
runs-on: ubuntu-latest

steps:
- name: Check out Git repository
uses: actions/checkout@v3

- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 20

- name: Install modules
uses: pnpm/action-setup@v4

- name: Install dependencies
run: pnpm install

- name: Build necessary packages
run: pnpm build --filter codemod

- name: Preview
run: pnpx pkg-pr-new publish './apps/cli' --pnpm --compact

0 comments on commit 6ccde98

Please sign in to comment.