This Github action runs vue-tsc against .vue
files and display the errors found in whole codebase.
- Include vue-tsc in package.json
- Add tsconfig.json
Add to your existing workflow file or create a new file named .github/workflows/check_vue_tsc.yml
and copy over one of the examples below to your new workflow file.
This is the simplest example to get it running:
name: check-vue-tsc
on: push
jobs:
vue-tsc:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 18
- uses: keita-hino/vue-tsc-action@main
If there is an error, the error details will be displayed in the workflow execution log.
All scripts in this project are released under the MIT License.