Skip to content

Merge pull request #23 from ImBIOS/patch-1 #337

Merge pull request #23 from ImBIOS/patch-1

Merge pull request #23 from ImBIOS/patch-1 #337

Workflow file for this run

name: CI
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: "14.x"
- uses: actions/cache@v2
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Run tests
run: |
yarn install
yarn test:types
yarn lint
yarn test --coverage
bash <(curl -s https://codecov.io/bash)