BAH-3271 | Ability to set mandatory fields for complex controls and images #12
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: Validate PR for Bahmni Form Controls | |
on: | |
pull_request: | |
branches: [ master ] | |
types: [ opened, synchronize, reopened ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v3 | |
- name: Set up Node JS 10.19.0 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 10.19.0 | |
registry-url: 'https://registry.npmjs.org' | |
- run: yarn cache clean | |
- name: Install dependencies | |
run: brew install automake autoconf libtool dpkg pkgconfig nasm libpng | |
- name: yarn Install | |
run: yarn | |
- name: yarn test | |
run: yarn test |