Skip to content

Live Share SDK 2.0.0 #269

Live Share SDK 2.0.0

Live Share SDK 2.0.0 #269

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