Skip to content

Github actions for tests, linting and type checking #3

Github actions for tests, linting and type checking

Github actions for tests, linting and type checking #3

Workflow file for this run

name: Tests 🧪
on:
pull_request:
branches:
- '**'
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run tests
run: npm install && npm test