fix: cluster instance host patterns parsing errors, MySQL IAM authentication and incorrect configuration parameter in documentation #2872
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: Linting and Unit Tests | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - "*" | |
| permissions: | |
| contents: read | |
| jobs: | |
| run-checks-and-unit-tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0 | |
| with: | |
| node-version: "22.x" | |
| - name: Install dependencies | |
| run: npm install --no-save | |
| - name: Run eslint - linting | |
| run: npm run lint | |
| - name: Check formatting | |
| run: npm run check | |
| - name: Type check | |
| run: npm run typecheck | |
| - name: Run unit tests | |
| run: npm test |