Skip to content

Commit

Permalink
fixup! Bump react-scripts to v5
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-kbregula committed May 9, 2023
1 parent e6b6e3f commit 416e39e
Showing 1 changed file with 16 additions and 8 deletions.
24 changes: 16 additions & 8 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -143,14 +143,22 @@ jobs:
env:
COMPONENT_LIB_DIR: ${{ github.workspace }}/streamlit/component-lib/
run: |
cd "examples/CustomDataframe/frontend";
npm link "${COMPONENT_LIB_DIR}";
cd "examples/MaterialLogin/frontend";
npm link "${COMPONENT_LIB_DIR}";
cd "examples/RadioButton/frontend";
npm link "${COMPONENT_LIB_DIR}";
cd "examples/SelectableDataTable/frontend";
npm link "${COMPONENT_LIB_DIR}";
(
cd "examples/CustomDataframe/frontend";
npm link "${COMPONENT_LIB_DIR}";
);
(
cd "examples/MaterialLogin/frontend";
npm link "${COMPONENT_LIB_DIR}";
);
(
cd "examples/RadioButton/frontend";
npm link "${COMPONENT_LIB_DIR}";
);
(
cd "examples/SelectableDataTable/frontend";
npm link "${COMPONENT_LIB_DIR}";
);
- name: Build frontend code
run: ./dev.py examples-npm-build

0 comments on commit 416e39e

Please sign in to comment.