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 adc0e75
Show file tree
Hide file tree
Showing 3 changed files with 837 additions and 1 deletion.
25 changes: 25 additions & 0 deletions .github/workflows/pkg-pr-new.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Continuous Releases
on: [pull_request]

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 adc0e75

Please sign in to comment.