Skip to content

Implement LRU cache for property filters #90

Implement LRU cache for property filters

Implement LRU cache for property filters #90

Workflow file for this run

name: Build
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 15.x]
steps:
- uses: actions/checkout@v2
- name: Build and test test using node ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- run: yarn install --frozen-lockfile
- run: yarn lint
- run: yarn build
- run: yarn test-coverage-all
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
# with:
# verbose: true