updating the compiled version #454
This file contains hidden or 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: TS Tests | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checking out the Project's Code | |
uses: actions/checkout@v2 | |
- name: Installing TypeScript and Other Dependencies | |
run: npm ci | |
- name: Compiling the TypeScript Code | |
run: tsc | |
# - name: Running Tests | |
# run: npm t |