Skip to content

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

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

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

Workflow file for this run

name: ci
on:
pull_request:
push:
schedule:
- cron: '00 01 * * *'
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
node-version: [10.x, 12.x, 14.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: yarn --frozen-lockfile
- run: yarn audit
- run: yarn lint
- run: yarn test
env:
CI: true