Skip to content

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

Bump webpack-dev-middleware from 5.3.3 to 5.3.4

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

Workflow file for this run

name: test&lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Build
run: |
npm ci
npm i -g @angular/cli@latest
npm run build
- name: Test
run: npm run test -- --no-watch --no-progress
- name: Lint
run: npm run lint