This repository has been archived by the owner on Feb 5, 2025. It is now read-only.
feat: add console warn deprecation notice to react-chat (COR-4436) (#… #787
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Deploy | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build-and-deploy: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
persist-credentials: false | |
- uses: volta-cli/action@v4 | |
- name: Build sdk-runtime | |
working-directory: ./packages/sdk-runtime | |
run: | | |
yarn install | |
yarn build | |
- name: Install and Build | |
working-directory: ./packages/react-chat | |
run: | | |
yarn install | |
yarn storybook:publish | |
- name: Deploy | |
uses: JamesIves/[email protected] | |
with: | |
branch: docs | |
folder: ./packages/react-chat/docs | |
clean: true |