# This workflow will do a clean install of node dependencies, build the source code and run tests across different versions of node # For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: Typescript Type Check on: push: branches: [ master ] pull_request: branches: [ master ] jobs: ts: runs-on: ubuntu-latest strategy: matrix: node-version: [10.x] steps: - uses: actions/checkout@master - uses: bahmutov/npm-install@v1.4.5 - run: yarn ts-check