Make birth VALIDATE and REGISTER actions only available if record is not waiting for approval of late registration #2931
Workflow file for this run
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: Compile, lint and test | |
| on: [pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checking out git repo | |
| uses: actions/checkout@v4 | |
| - name: Use Node.js from .nvmrc | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .nvmrc | |
| cache: 'yarn' | |
| - name: Runs dependency installation | |
| run: yarn | |
| - name: Compile | |
| run: yarn test:compilation | |
| - name: Test | |
| run: yarn test | |
| - name: Bash script linting | |
| uses: ludeeus/action-shellcheck@master | |
| continue-on-error: true | |
| with: | |
| severity: error | |
| ignore_paths: | | |
| node_modules/**/* | |
| env: | |
| SHELLCHECK_OPTS: -e SC2086 -e SC2068 |