chore: add type-check gh actions like monorepo

pull/9078/head
Agusti Fernandez Pardo 2022-04-02 02:53:14 +02:00
parent 902aacfb12
commit 837247f81b
1 changed files with 27 additions and 0 deletions

27
.github/workflows/type-check.yml vendored Normal file
View File

@ -0,0 +1,27 @@
name: Check types
on:
pull_request:
branches:
- main
jobs:
types:
name: Check types
strategy:
matrix:
node: ["14.x"]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout repo
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node ${{ matrix.node }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node }}
- run: yarn
- run: yarn type-check