Skip to content

Make birth VALIDATE and REGISTER actions only available if record is not waiting for approval of late registration #2930

Make birth VALIDATE and REGISTER actions only available if record is not waiting for approval of late registration

Make birth VALIDATE and REGISTER actions only available if record is not waiting for approval of late registration #2930

Workflow file for this run

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