Skip to content

fix: missing teen process #1296

fix: missing teen process

fix: missing teen process #1296

Workflow file for this run

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