Skip to content

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

Bump webpack-dev-middleware from 5.3.3 to 5.3.4

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

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js v16 (LTS)
uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Check the typings
run: yarn type-check
- name: Execute the tests
run: yarn test --coverage=false
- name: Build the library and the example
run: yarn prd