Bump @testing-library/react from 13.4.0 to 16.3.2 in /samples/javascript/21.react-media-template #486
This file contains hidden or 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] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [18.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: "npm" | |
| - run: npm --loglevel verbose ci --ignore-scripts | |
| timeout-minutes: 20 | |
| # fix for v1 | |
| #- 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 |