Skip to content

Bump webpack-dev-middleware from 3.7.3 to 5.3.4 in /examples #11

Bump webpack-dev-middleware from 3.7.3 to 5.3.4 in /examples

Bump webpack-dev-middleware from 3.7.3 to 5.3.4 in /examples #11

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
node: [18, 19, 20, 21]
steps:
- uses: actions/checkout@v4
- name: Setup Node v${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: 'yarn'
- name: Install Dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Test Build
run: yarn build:test