Skip to content

Latest commit

 

History

History

regex-validator

RegEx Validator

Validate a string value against a Regular Expression (RegEx) using RegExp.test().

Release Process

Currently Github Actions does not build each project automatically. You will need to run npm run build in the project you're submitting changes too.

Example Workflow

jobs:
  job:
    runs-on: ubuntu-latest
    steps:
    - name: Title
      with:
        value: 'Some test value'
        regex_pattern: '^[A-Za-z0-9 \.,]{1,80}$'
        required: false