Add script to optimize experimental LLM matching of application fields to base fields #808
This file contains hidden or 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: Check Types | |
| on: | |
| pull_request: | |
| push: | |
| jobs: | |
| check_types: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version-file: ".node-version" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Check types | |
| run: tsc -p tsconfig.json |