fix(stdio): keep Appium and WebDriver logs off JSON-RPC stdout #1295
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: Code Quality and Unit Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| node_matrix: | |
| uses: appium/appium-workflows/.github/workflows/node-lts-matrix.yml@main | |
| lint-format-and-test: | |
| name: ESLint, Prettier, and Tests | |
| runs-on: ubuntu-latest | |
| needs: | |
| - node_matrix | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| node-version: ${{ fromJSON(needs.node_matrix.outputs.versions) }} | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - uses: SocketDev/action@v1 | |
| with: | |
| mode: firewall-free | |
| - name: Install dependencies | |
| run: sfw npm install | |
| - name: List installed packages | |
| run: npm list --depth=0 | |
| - name: Run ESLint | |
| run: npm run lint | |
| - name: Run Format check | |
| run: npm run format:check | |
| - run: npm run build | |
| name: Build | |
| - name: Audit MCP tool discovery footprint | |
| run: npm run audit:tools | |
| - name: Run Unit Tests | |
| run: npm run test | |
| # check if the all tools and plugins have unique names | |
| - name: Verify unique names for tools and plugins | |
| run: npm run verify:names |