Skip to content

Bump webpack from 5.89.0 to 5.94.0 in /webrtc-js #24

Bump webpack from 5.89.0 to 5.94.0 in /webrtc-js

Bump webpack from 5.89.0 to 5.94.0 in /webrtc-js #24

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