Skip to content

build(deps-dev): bump webpack from 5.91.0 to 5.92.0 #1151

build(deps-dev): bump webpack from 5.91.0 to 5.92.0

build(deps-dev): bump webpack from 5.91.0 to 5.92.0 #1151

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Test on Node ${{ matrix.node }}
runs-on: ubuntu-latest
strategy:
matrix:
node: [ '16', '14' ]
steps:
- uses: actions/[email protected]
- uses: actions/[email protected]
with:
node-version: ${{ matrix.node }}
- name: install dependencies
run: npm ci
- name: Project Tests
run: npm test
test_latest:
name: Test on latest Node
runs-on: ubuntu-latest
container: node:current
steps:
- uses: actions/[email protected]
- name: install dependencies
run: npm ci
- name: Project Tests
run: npm test
eslint:
name: Check ESLint
runs-on: ubuntu-latest
container: node:current
steps:
- uses: actions/[email protected]
- name: install dependencies
run: npm ci
- name: check lint
run: npm run lint