Move callbacks to connectSyncRoot #176
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: Pull request checks | |
| on: | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| jobs: | |
| checks: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v3 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 18 | |
| - name: Install dependencies | |
| run: yarn install --ignore-scripts | |
| - name: Run TypeScript compiler | |
| run: npm run type-check | |
| - name: Run Prettier | |
| run: npm run format | |
| - name: Run Eslint | |
| run: npm run lint | |
| - name: Run tests | |
| run: npm run test:once |