Skip to content

feat: add git commit info extraction and GIT_HASH injection for manual deployments-#2508 #2999

feat: add git commit info extraction and GIT_HASH injection for manual deployments-#2508

feat: add git commit info extraction and GIT_HASH injection for manual deployments-#2508 #2999

Workflow file for this run

name: Pull Request
on:
pull_request:
branches: [main, canary]
permissions:
contents: read
jobs:
pr-check:
runs-on: ubuntu-latest
strategy:
matrix:
job: [build, test, typecheck]
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 20.16.0
cache: "pnpm"
- run: pnpm install --frozen-lockfile
- run: pnpm server:build
- run: pnpm ${{ matrix.job }}