Skip to content

Bump http-proxy-middleware from 2.0.6 to 2.0.7 in /webrtc-js #28

Bump http-proxy-middleware from 2.0.6 to 2.0.7 in /webrtc-js

Bump http-proxy-middleware from 2.0.6 to 2.0.7 in /webrtc-js #28

Workflow file for this run

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