New Feature: add new APIs to leetcode.cn and leecode.com & fix some errors #812
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 Check | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| pull_request_check: | |
| name: Pull Request Check | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup PNPM | |
| uses: pnpm/action-setup@v3 | |
| with: | |
| run_install: true | |
| - name: Lint | |
| run: pnpm lint | |
| - name: Test | |
| run: pnpm test | |
| - name: Build | |
| run: pnpm build |