Merge pull request #623 from Bonymol-aot/FWF-4820/delete-content-change #223
This file contains hidden or 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: forms-flow-review-CI | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| - release/* | |
| paths: | |
| - "forms-flow-review/**" | |
| - "VERSION" | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| - release/* | |
| paths: | |
| - "forms-flow-review/**" | |
| - "VERSION" | |
| defaults: | |
| run: | |
| shell: bash | |
| working-directory: ./forms-flow-review | |
| jobs: | |
| Forms-Flow-Review-CI: | |
| name: Run Tests and Lint Checks | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: '16.18.0' | |
| - name: Install dependencies | |
| run: | | |
| npm ci --force | |
| - name: Run Tests | |
| run: | | |
| npm run test |