Skip to content

chore(deps): bump simple-git and lint-staged #212

chore(deps): bump simple-git and lint-staged

chore(deps): bump simple-git and lint-staged #212

Workflow file for this run

name: CI
on:
push:
pull_request:
branches:
- master
- develop
workflow_dispatch:
jobs:
job:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
node: [12, 14]
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
cache: 'npm'
- name: Install packages
run: npm ci
- name: Build binaries
run: npm run build
- name: Run tests
run: npm run test