Skip to content

fix(ssh): show MFA modal for EDR secondary passwords (#2150) #3858

fix(ssh): show MFA modal for EDR secondary passwords (#2150)

fix(ssh): show MFA modal for EDR secondary passwords (#2150) #3858

Workflow file for this run

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