Skip to content

fix(login): improve error handling for OTP login during email/passwor… #123

fix(login): improve error handling for OTP login during email/passwor…

fix(login): improve error handling for OTP login during email/passwor… #123

Workflow file for this run

name: Code Quality Tests
on: push
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ 24.x ]
steps:
- uses: actions/checkout@v6
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run linter
- run: npm run test:coverage
- run: npm run build --if-present
env:
CI: true