This repository has been archived on 2023-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
|
name: CI Tests
|
|
|
|
on: [pull_request, push]
|
|
|
|
jobs:
|
|
lint:
|
|
name: Quick tests
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
- name: Bootstrap
|
|
run: yarn
|
|
- name: Check types
|
|
run: yarn check-types
|
|
- name: Lint
|
|
run: yarn lint
|
|
- name: Tests
|
|
run: yarn test
|