Bump http-proxy-middleware from 2.0.6 to 2.0.7 in /webrtc-js #28
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 React Application | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'webrtc-js/**' | |
- '.github/workflows/webrtc-js.yaml' | |
pull_request: | |
branches: | |
- master | |
paths: | |
- 'webrtc-js/**' | |
- '.github/workflows/webrtc-js.yaml' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [ 18, 20 ] | |
name: webrtc-js on Node ${{ matrix.node }} | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: Install dependencies | |
run: | | |
cd webrtc-js | |
npm install | |
- name: Build | |
run: | | |
cd webrtc-js | |
unset CI # todo: remove later & fix warnings | |
npm run build |