feat: allow changing commit sha on review form #356
Workflow file for this run
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: TypeScript tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| typescript_tests: | |
| name: TypeScript tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@v4 | |
| - uses: ./.github/actions/setup-node | |
| - name: Check TypeScript Formatting | |
| run: pnpm format:check | |
| - name: Run ESLint | |
| run: pnpm lint |