Skip to content

feat(): add build.yml step #14

feat(): add build.yml step

feat(): add build.yml step #14

Workflow file for this run

name: TypeScript Check
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
- name: Install dependencies
run: yarn install
- name: Run TypeScript compiler
run: npx tsc --noEmit