diff --git a/.github/workflows/type-check.yml b/.github/workflows/type-check.yml new file mode 100644 index 0000000000..69a2997013 --- /dev/null +++ b/.github/workflows/type-check.yml @@ -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 \ No newline at end of file