chore(deps-dev): bump fastmcp from 4.12.0 to 4.20.11 #162
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-build-test: | |
| name: ESLint, Format, Build, 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: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| - name: Setup submodules sparse-checkout | |
| run: | | |
| chmod +x scripts/setup-submodules-sparse.sh | |
| ./scripts/setup-submodules-sparse.sh | |
| - name: Setup Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v7 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: npm | |
| - uses: SocketDev/action@v1 | |
| with: | |
| mode: firewall-free | |
| - name: Install dependencies | |
| run: sfw npm ci | |
| - 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 | |
| - name: Build | |
| run: npm run build | |
| - name: Run Unit Tests | |
| run: npm test |