https://github.com/taskade/eslint-tsc-action
https://github.com/taskade/eslint-tsc-action
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/taskade/eslint-tsc-action
- Owner: taskade
- License: mit
- Created: 2022-06-14T09:21:51.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-04-29T03:09:23.000Z (9 months ago)
- Last Synced: 2025-08-17T14:12:22.165Z (5 months ago)
- Language: JavaScript
- Size: 2.62 MB
- Stars: 1
- Watchers: 6
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eslint-tsc-action
This GitHub Action runs ESLint and TSC against a repository, providing GitHub PR annotations.
### Sample workflow
```yaml
name: ESLint and TSC
on:
pull_request:
types: [opened,edited,synchronize]
pull_request_review:
types: [submitted]
jobs:
lint:
name: Lint
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: yarn install
- uses: taskade/eslint-tsc-action@main
```