Skip to content

chore(deps-dev): bump webpack from 4.43.0 to 5.94.0 #6

chore(deps-dev): bump webpack from 4.43.0 to 5.94.0

chore(deps-dev): bump webpack from 4.43.0 to 5.94.0 #6

Workflow file for this run

name: CI Server
on: [push]
jobs:
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Cache node modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
# npm cache files are stored in `~/.npm` on Linux/macOS
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Install Dependencies
run: npm install
- name: Security
run: npm audit
- name: Linting
run: npm run lint
- name: Test
run: npm test