Skip to content

chore(deps): bump stefanzweifel/git-auto-commit-action from 5 to 7 (#30) #114

chore(deps): bump stefanzweifel/git-auto-commit-action from 5 to 7 (#30)

chore(deps): bump stefanzweifel/git-auto-commit-action from 5 to 7 (#30) #114

Workflow file for this run

name: Typecheck
on:
# Run this workflow on push to main
push:
branches:
- main
# Run this workflow on pull request to main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
type-check:
if: github.event_name != 'pull_request' || (github.event_name == 'pull_request' && github.event.pull_request.draft == false)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup pnpm
uses: pnpm/action-setup@v6
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: .node-version
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run type-check validation
run: pnpm run --if-present type-check