Skip to content

Commit

Permalink
add build and bundle step for react-library in draft release action
Browse files Browse the repository at this point in the history
  • Loading branch information
ezhangy committed Jul 22, 2024
1 parent a13b120 commit 13c2f55
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: "20.x"
- name: Build and Bundle
- name: Build and Bundle Static Exports
working-directory: ./packages/stencil-library
id: build-and-bundle
run: |
Expand All @@ -32,6 +32,16 @@ jobs:
# id: run-tests
# run: |
# npm test
- name: Build and Bundle React Exports
working-directory: ./packages/react-library
id: build-and-bundle
run: |
npm install
npm run build
# - name: Run Tests
# id: run-tests
# run: |
# npm test
- name: Bump and commit new version
id: bump_version
run: |
Expand Down

0 comments on commit 13c2f55

Please sign in to comment.