feat: Further progress on the 530 branch. #378
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: Verify Engine Code | |
| on: | |
| pull_request: | |
| push: | |
| paths: | |
| - '.github/workflows/engine.yml' | |
| - 'src/**' | |
| - 'tools/**' | |
| workflow_dispatch: | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| bun-version: latest | |
| - run: bun install | |
| - name: Lint | |
| run: bun run lint | |
| - name: Compile | |
| run: bun run tsc |