update fluid imports to use /legacy > /internal when possible #279
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 Live Share SDK samples | |
on: | |
push: | |
branches: [main, mainv2] | |
pull_request: | |
branches: [main, mainv2] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [18.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- run: npm install | |
- run: npm install jest | |
working-directory: samples/javascript/02.react-video | |
- name: "build packages and samples" | |
run: npm run build | |
# TODO: get scenario_test.sh working | |
# - name: "test 02.react-video sample" | |
# shell: "bash" | |
# run: sh ../../../.github/workflows/scenario_test.sh | |
# working-directory: samples/javascript/02.react-video |