From 13c2f556dac8d03a253aa6558e11db8a11d62c45 Mon Sep 17 00:00:00 2001 From: elizabeth zhang Date: Mon, 22 Jul 2024 14:08:19 -0400 Subject: [PATCH] add build and bundle step for react-library in draft release action --- .github/workflows/draft-release.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/draft-release.yml b/.github/workflows/draft-release.yml index 51976d5..a123ec2 100644 --- a/.github/workflows/draft-release.yml +++ b/.github/workflows/draft-release.yml @@ -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: | @@ -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: |