Skip to content

Fix typo in interface/usergroup/mfa_totp.php (#6975) #45

Fix typo in interface/usergroup/mfa_totp.php (#6975)

Fix typo in interface/usergroup/mfa_totp.php (#6975) #45

Workflow file for this run

name: JS Unit Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
permissions:
contents: read
jobs:
js_unit_test:
runs-on: ubuntu-22.04
name: JS Unit Test
steps:
- uses: actions/checkout@v3
- name: Install npm package
uses: actions/setup-node@v3
with:
node-version: '18'
- name: npm install
run: |
failTest=false
npm install || failTest=true
if $failTest; then
exit 1
fi
- name: Run Unit Tests
run: |
failTest=false
npm run test:js || failTest=true
if $failTest; then
exit 1
fi