Skip to content

Bump webpack-dev-server from 4.3.0 to 5.2.1 #4

Bump webpack-dev-server from 4.3.0 to 5.2.1

Bump webpack-dev-server from 4.3.0 to 5.2.1 #4

Workflow file for this run

name: Integration Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
job:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
node: ['14', '16']
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install npm@7
run: npm i -g npm@7
- name: Install packages
run: npm ci --prefer-offline
- name: Run integration tests
run: npm run test:integration