Status Chart: Weekly/dependency updates (#5089) #115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) Microsoft Corporation. | |
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | |
name: Compile TypeScript | |
on: | |
pull_request: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Commit | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ github.sha }} | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ">=22.2.0" | |
- name: Install Packages | |
run: | | |
npm ci | |
- name: Compile gather_stats.mts | |
run: | | |
npx tsc --noEmit -p src_gather/tsconfig.json | |
- name: Compile status_chart.mts | |
run: | | |
npx tsc -p src/tsconfig.json |