fix(engine): Appease the TS compiler god #1542
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
name: Compile Engine Code | |
on: | |
pull_request: | |
branches: [ main ] | |
push: | |
branches: [ main, live ] | |
paths: | |
- '.github/workflows/engine-compile.yml' | |
- 'src/**' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 22.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '22.x' | |
- name: Install Dependencies | |
run: npm i | |
- name: Run TS Compiler | |
run: npx tsc |