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
26 lines
545 B
YAML
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
|