Skip to content

fix: package.json & yarn.lock to reduce vulnerabilities #1347

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

fix: package.json & yarn.lock to reduce vulnerabilities #1347

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [14.x]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
name: Install node
with:
node-version: '14'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run audit
run: yarn yarn-audit-ci --high
- name: Run tests
run: yarn test