Skip to content

Update README with latest version #60

Update README with latest version

Update README with latest version #60

Workflow file for this run

name: Tests CI
on:
pull_request:
push:
branches: [master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x, 14.x, 16.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
# Speed up subsequent runs with caching
- name: Cache node modules
uses: actions/cache@v2
id: yarn-cache
with:
path: '**/node_modules'
key: ${{ runner.os }}-node_modules-${{ hashFiles('**/yarn.lock') }}
- name: Install packages
if: steps.yarn-cache.outputs.cache-hit != 'true'
run: yarn
- name: Run Typescript Checks
run: yarn lint
- name: Run the tests
run: yarn test:ci