fix(ssh): show MFA modal for EDR secondary passwords (#2150) #3858
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: test | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - "**" | |
| concurrency: | |
| group: test-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| name: lint-and-test | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Node | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 22 | |
| cache: npm | |
| - name: Install shell test dependencies | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install -y fish | |
| - name: Install deps | |
| run: npm ci | |
| - name: Lint | |
| run: npm run lint | |
| - name: Verify generated Catty tool specs | |
| run: | | |
| npm run generate:capability-tools | |
| git diff --exit-code infrastructure/ai/harness/generated/cattyToolSpecs.json | |
| - name: Test | |
| run: npm test |