Skip to content

Latest commit

 

History

History
47 lines (36 loc) · 1.03 KB

README.md

File metadata and controls

47 lines (36 loc) · 1.03 KB

typescript-action

Typescript compiler action

Compile your Typescript code and check for errors.

Forked from: https://github.com/iCrawl/action-tsc

Usage

.github/workflows/tsc.yml

on:
  push:
  pull_request:

jobs:
  tsc:
    name: tsc
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1
    - uses: actions/setup-node@v1
      with:
        node-version: '16.14.2'
    - name: yarn install
      run: yarn install
    - name: tsc
      uses: academia-edu/typescript-action@v2

Passing command-line parameters to tsc

You can pass the --project parameter to tsc if your tsconfig.json is not in the root of your project:

    - name: tsc compile
      uses: academia-edu/typescript-action@v2
      with:
        project: subdirectorywith_tsconfig

Author

action-tsc © iCrawl
Authored and maintained by iCrawl.

GitHub @iCrawl · Twitter @iCrawlToGo