Skip to content

Remove Microsoft Edge "Reveal" icon from password field #1400

Remove Microsoft Edge "Reveal" icon from password field

Remove Microsoft Edge "Reveal" icon from password field #1400

Workflow file for this run

name: Tests
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the dev branch
pull_request:
branches-ignore:
- 'v*/main'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
env:
NODE_OPTIONS: --max_old_space_size=16384
# This workflow contains two jobs called "test" and "build" and runs them in parallel
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run lint
- run: sudo npx playwright install-deps
- run: npm run test
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run build:prod