fix(tests): update cases of cmdline message #2969
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: Lint | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| lint: | |
| if: github.event.pull_request.draft == false | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| cache: "npm" | |
| - name: Install Dependencies | |
| run: npm install --frozen-lockfile | |
| - name: Check Types by TSC | |
| run: npm run lint:typecheck | |
| - name: Lint ESLint | |
| run: npm run lint |