19 lines
315 B
YAML
19 lines
315 B
YAML
|
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
|