Skip to content

Merge branch 'main' of https://github.com/zachary62/PocketFlow-Typesc… #11

Merge branch 'main' of https://github.com/zachary62/PocketFlow-Typesc…

Merge branch 'main' of https://github.com/zachary62/PocketFlow-Typesc… #11

Workflow file for this run

name: Code Quality
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
typescript-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "18.x"
cache: "npm"
- name: Install dependencies
run: npm ci
- name: TypeScript compilation check
run: npx tsc --noEmit