Skip to content

Bump braces, jest and ts-jest #38

Bump braces, jest and ts-jest

Bump braces, jest and ts-jest #38

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
name: tests
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm install
- name: Run type check
run: tsc --noEmit
- name: Run tests
run: npm test