Skip to content

3.0.0

3.0.0 #204

Workflow file for this run

name: Type Check (tsc)
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
type-check:
permissions:
contents: read
pull-requests: write
name: Type Check (tsc)
runs-on: ubuntu-latest
steps:
- name : πŸ“¦ Checkout project repo
uses: actions/checkout@v3
with:
fetch-depth: 0
- name : πŸ“¦ Setup Node + PNPM + install deps
uses: ./.github/actions/setup-node-pnpm-install
- name: πŸ“¦ Install Reviewdog
if: github.event_name == 'pull_request'
uses: reviewdog/action-setup@v1
- name: πŸƒβ€β™‚οΈ Run TypeScript PR # Reviewdog tsc errorformat: %f:%l:%c - error TS%n: %m
# we only need to add the reviewdog step if it's a pull request
if: github.event_name == 'pull_request'
run: |
pnpm type-check | reviewdog -name="tsc" -efm="%f(%l,%c): error TS%n: %m" -reporter="github-pr-review" -filter-mode="nofilter" -fail-on-error -tee
env:
REVIEWDOG_GITHUB_API_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: πŸƒβ€β™‚οΈ Run TypeScript Commit
# If it's not a Pull Request then we just need to run the type-check
if: github.event_name != 'pull_request'
run: pnpm type-check