[fix]: SQL Management and scanning tasks add auditing status #891
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: CI | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
pull_request: | |
branches: [main, 'main-ee', release*, 'temporary/**'] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
checker: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
uses: ./.github/actions/catch-install-pnpm | |
- name: Code lint checker | |
run: pnpm checker | |
test-ee: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
strategy: | |
matrix: | |
shard: [1, 2, 3, 4] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
uses: ./.github/actions/catch-install-pnpm | |
- name: Coverage test report ee | |
run: sh ./scripts/jest/run-ci-ee.sh ${{ matrix.shard }} ${{ strategy.job-total }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: coverage-artifacts | |
path: coverage/ | |
test-ce: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
uses: ./.github/actions/catch-install-pnpm | |
- name: Coverage test report ce | |
run: sh ./scripts/jest/run-ci-ce.sh | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: ce-coverage-artifacts | |
path: ce_coverage/ | |
report: | |
runs-on: ubuntu-latest | |
if: "!contains(github.event.head_commit.message, '[skip ci]')" | |
needs: [test-ee, test-ce] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Get CE Coverage | |
uses: actions/download-artifact@v3 | |
with: | |
name: ce-coverage-artifacts | |
path: ce_coverage | |
- name: Get EE Coverage | |
uses: actions/download-artifact@v3 | |
with: | |
name: coverage-artifacts | |
path: coverage | |
- name: Install dependencies | |
uses: ./.github/actions/catch-install-pnpm | |
- name: Merge coverage reports | |
run: node ./scripts/jest/merge-report-json.js | |
- name: Coverage test report | |
uses: ArtiomTr/jest-coverage-report-action@v2 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
base-coverage-file: coverage-merged.json | |
coverage-file: coverage-merged.json | |
- name: Delete artifact | |
uses: geekyeggo/delete-artifact@v2 | |
with: | |
name: | | |
ce-coverage-artifacts | |
coverage-artifacts |