Skip to content

Commit

Permalink
setup pkg-pr-new
Browse files Browse the repository at this point in the history
  • Loading branch information
sirineJ committed Dec 5, 2024
1 parent 6b2ccd8 commit aac8f8e
Show file tree
Hide file tree
Showing 3 changed files with 839 additions and 1 deletion.
27 changes: 27 additions & 0 deletions .github/workflows/pkg-pr-new.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Continuous Releases
on:
pull_request:
types: [synchronize]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Setup Node.js v20
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'npm'

- name: Install dependencies
run: npm ci

- name: Build packages
run: npm run build

- name: Publish packages
- run: npx pkg-pr-new publish './packages/circuit-ui' './packages/design-tokens' './packages/icons'
Loading

0 comments on commit aac8f8e

Please sign in to comment.