Files
JIMRI/.github/workflows/typescript-check.yml
T
Serge NOEL 2c45fc244e
Headless CI Tests / build (push) Has been cancelled
Run LinkedWarrantTest / build (push) Has been cancelled
Run Separate Tests / build (push) Has been cancelled
Static Analysis Java25 / build (push) Has been cancelled
Static Analysis / build (push) Has been cancelled
Typescript Check / tsc (push) Has been cancelled
Windows Java25 CI Tests / build (push) Has been cancelled
Windows CI Tests / build (push) Has been cancelled
Add config files
2026-06-17 14:17:22 +02:00

26 lines
545 B
YAML

# This workflow checks that Typescript code has been properly compiled
name: Typescript Check
on:
push:
pull_request:
jobs:
tsc:
name: tsc
runs-on: ubuntu-latest
steps:
# see https://github.com/marketplace/actions/typescript-compiler
- uses: actions/checkout@v5
- name: install node v24
uses: actions/setup-node@v6
with:
node-version: 24
- name: yarn install
run:
yarn install
- name: check changes
run: |
ant typescript
git diff --exit-code web/js