Skip to content

Bump webpack-dev-middleware from 5.3.3 to 5.3.4 #161

Bump webpack-dev-middleware from 5.3.3 to 5.3.4

Bump webpack-dev-middleware from 5.3.3 to 5.3.4 #161

Workflow file for this run

name: ci
on:
push:
branches:
- '*'
pull_request:
branches:
- main
- development
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up nodejs
uses: actions/setup-node@v2
with:
node-version: '18'
cache: 'npm'
- name: npm CI
run: npm ci
- name: npm Lint
run: npm run lint
- name: npm Test
run: npm run test
- name: npm Build
run: npm run build