Skip to content

Correct some issues with TS typings #48

Correct some issues with TS typings

Correct some issues with TS typings #48

Workflow file for this run

name: CI
on:
pull_request:
branches:
- '**'
push:
branches:
- main
jobs:
build_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: ~/.npm
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-node-
- run: npm ci
- run: npm run test