hotfix: Client bugs (#1137) #183
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: 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: pnpm/action-setup@v4 | |
name: Install pnpm | |
with: | |
version: 10 | |
run_install: false | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: '22.x' | |
cache: 'pnpm' | |
- run: pnpm i | |
- name: Lint | |
run: npm run lint | |
- name: Compile | |
run: npx tsx | |
- name: Test | |
run: npm test |