Skip to content

Fix footer git SHA injection for Netlify builds #5

Fix footer git SHA injection for Netlify builds

Fix footer git SHA injection for Netlify builds #5

Workflow file for this run

name: Type Check
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
type-check:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run TypeScript type checking
run: yarn type-check