EPMRPP-88524 || Issue is not posted when value is entered in autocomplete fields, but there is no match with them in the integration project #4594
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: | |
push: | |
branches: | |
- '**' | |
- '!master' | |
paths-ignore: | |
- readme.md | |
- README.md | |
- CHANGELOG.md | |
pull_request: | |
branches: | |
- master | |
- develop | |
env: | |
UI_BUILD_REACT: 'app/' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node: [14] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup NodeJS | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node }} | |
- name: JS Build | |
env: | |
NODE_OPTIONS: '--max_old_space_size=2048' | |
run: | | |
npm --prefix ${{ env.UI_BUILD_REACT }} ci | |
npm --prefix ${{ env.UI_BUILD_REACT }} run lint | |
npm --prefix ${{ env.UI_BUILD_REACT }} run test:coverage | |
npm --prefix ${{ env.UI_BUILD_REACT }} run build | |
- name: Codecov report | |
uses: codecov/codecov-action@v1 |