Skip to content

Bump webpack from 5.76.0 to 5.95.0 #97

Bump webpack from 5.76.0 to 5.95.0

Bump webpack from 5.76.0 to 5.95.0 #97

Workflow file for this run

name: Continuous integration
on: pull_request
jobs:
ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Cache the node_modules dir
uses: actions/cache@v2
with:
path: node_modules
key: ${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}
- name: Install
run: yarn install --frozen-lockfile
- name: Build
run: yarn build-prod
- name: Test
run: yarn test