Added video js sample #281
Workflow file for this run
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: Test Live Share SDK packages | |
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 # install will trigger a build of all packages | |
- name: "test live-share" | |
run: npm run test | |
working-directory: packages/live-share | |
- name: "test live-share-canvas" | |
run: npm run test | |
working-directory: packages/live-share-canvas | |
- name: "test live-share-media" | |
run: npm run test | |
working-directory: packages/live-share-media |