Skip to content

Bump webpack from 4.44.2 to 5.94.0 #40

Bump webpack from 4.44.2 to 5.94.0

Bump webpack from 4.44.2 to 5.94.0 #40

Workflow file for this run

name: CI
on:
pull_request:
branches: [ master ]
jobs:
test_code:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: package install dependencies
run: npm ci
- name: Test
run: npm run test:unit
- name: Lint
run: npm run lint