Skip to content

Merge pull request #51 from mcode/field-filtering #306

Merge pull request #51 from mcode/field-filtering

Merge pull request #51 from mcode/field-filtering #306

Workflow file for this run

name: Lint and Test
on: [push, pull_request]
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '14.x'
- run: npm ci
- run: npm run lint
env:
CI: true
test:
name: Tests on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '14.x'
- run: npm ci
- run: npm test
env:
CI: true