Skip to content

Bump fsevents from 1.2.9 to 1.2.13 #114

Bump fsevents from 1.2.9 to 1.2.13

Bump fsevents from 1.2.9 to 1.2.13 #114

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-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: Install dependencies
run: npm ci
- name: Lint
run: |
npm run format-check
npm run lint
- name: Build
run: npm run build
- name: Run tests
run: npm run test -- --coverage