Skip to content

fix: package.json to reduce vulnerabilities #1809

fix: package.json to reduce vulnerabilities

fix: package.json to reduce vulnerabilities #1809

Workflow file for this run

name: CI
on: [push]
jobs:
build:
runs-on: macOS-latest
strategy:
matrix:
node-version: [12.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install and ci
run: |
npm install
npm run ci
env:
CI: true
- name: Coveralls
uses: coverallsapp/github-action@master
with:
github-token: ${{ secrets.GITHUB_TOKEN }}