diff --git a/.github/codeql-config.yml b/.github/codeql-config.yml index 42bf56e30..3b5a17514 100644 --- a/.github/codeql-config.yml +++ b/.github/codeql-config.yml @@ -1,7 +1,2 @@ paths-ignore: - 'docs/**' - - 'fort_report/**' - - 'pipeline/fortify/**' - - 'servlets/digital-signature/**' - - 'servlets/digital-signing/**' - - 'test/**' diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index f34dddd05..104e7ad5b 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -23,7 +23,8 @@ jobs: matrix: language: - javascript - - java + - go + - typescript steps: - name: Run Code Scanning uses: department-of-veterans-affairs/codeql-tools/codeql-analysis@main diff --git a/.github/workflows/run-automated-test-2.yml b/.github/workflows/run-automated-test-2.yml deleted file mode 100644 index f65be7c2e..000000000 --- a/.github/workflows/run-automated-test-2.yml +++ /dev/null @@ -1,25 +0,0 @@ -name: Run automated tests manually - -on: - workflow_dispatch: - inputs: - command: - description: 'Choose The Test to Run' - required: true - options: - - 'Form Workflow' - - 'abcd' -jobs: - run-automated-tests: - runs-on: ubutnu-latest - steps: - - name: checkout project - uses: actions/checkout@v4 - - - name: run tests - run: | - cd test/Test-Automation - declare -A map(["Form Workflow"]="test.java.formWorkflow.formWorkflow_Test" ["abcdc"]="xml name2" ["testname3]="xml3") - SCRIPT=${map["${{inputs.command }}"]} docker compose up - - diff --git a/.github/workflows/run-automated-test.yml b/.github/workflows/run-automated-test.yml deleted file mode 100644 index ca8f27a45..000000000 --- a/.github/workflows/run-automated-test.yml +++ /dev/null @@ -1,34 +0,0 @@ -name: Run automated tests on push to master - -on: - pull_request: - branches: - -master - - push : - branches: - include: - - '*' - - jobs: - run-sanity-automated-tests-on-push-to-main: - runs-on: ubutnu-latest - steps: - - name: checkout project - uses: actions/checkout@v4 - - - name: run tests - run: | - cd test/Test-Automation - SCRIPT=test.java.formWorkflow.formWorkflow_Test docker compose up - - run-regression-automated-tests-on-push-to-main: - runs-on: ubutnu-latest - steps: - - name: checkout project - uses: actions/checkout@v4 - - - name: run tests - run: | - cd test/Test-Automation - SCRIPT=test.java.formWorkflow.formWorkflow_Test docker compose up \ No newline at end of file