feature/#31 Include typescript check (tsc) on CI workflow #104
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI workflow | |
on: pull_request | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Install front | |
run: | |
npm install | |
- name: Build | |
run: | |
npm run build | |
- name: Tests front | |
run: | |
npm test | |
- name: Check TypeScript | |
run: npm run check-tsc |