Skip to content

fix: package.json & package-lock.json to reduce vulnerabilities #305

fix: package.json & package-lock.json to reduce vulnerabilities

fix: package.json & package-lock.json to reduce vulnerabilities #305

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2.3.0
with:
node-version: 12.x
- name: Install Dependencies
run: npm ci
- name: Compile and Lint
run: npm run pretest