Skip to content

chore(deps-dev): bump webpack from 5.88.2 to 5.95.0 #1477

chore(deps-dev): bump webpack from 5.88.2 to 5.95.0

chore(deps-dev): bump webpack from 5.88.2 to 5.95.0 #1477

Workflow file for this run

name: Test
on:
push:
branches:
- '*'
- '!docs'
pull_request:
workflow_dispatch:
jobs:
test:
name: Run Jest
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- run: npm ci
- name: Run tests
run: npm run test:cov
- name: Upload coverage result to CodeCov
run: bash <(curl -s https://codecov.io/bash)
lint:
name: Run linters
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- run: npm ci
- run: npm run lint
webpack:
name: Run webpack
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- run: npm ci
- run: npm run webpack