Skip to content

build(deps-dev): bump webpack from 5.74.0 to 5.90.1 #208

build(deps-dev): bump webpack from 5.74.0 to 5.90.1

build(deps-dev): bump webpack from 5.74.0 to 5.90.1 #208

Workflow file for this run

name: Tests for PR
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: 'Run tests'
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v1
with:
node-version: '16'
- uses: actions/checkout@v2
- name: 'Cache node_modules'
uses: actions/cache@v2
with:
path: |
node_modules
package-lock.json
key: ${{ runner.os }}-node-v16-${{ hashFiles('package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-v16-
- name: Install Dependencies
run: npm install
- name: Run Build
run: npm run build
- name: Run Non-Ui Tests
run: npm run test-no-ui