Skip to content

Fix User Admin screen Google Email for Login does not save when creating new user #1505

Fix User Admin screen Google Email for Login does not save when creating new user

Fix User Admin screen Google Email for Login does not save when creating new user #1505

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: '20'
- 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