From e1043b10be8dbea7c6f2cfad601df9f0d0762569 Mon Sep 17 00:00:00 2001 From: Mentlegen <9807008+gentlementlegen@users.noreply.github.com> Date: Tue, 16 Jul 2024 12:24:43 +0900 Subject: [PATCH] fix: updated jest and knip workflow to work on `pull_request` event instead of target --- .github/workflows/jest-testing.yml | 20 +++++++-------- .github/workflows/knip-reporter.yml | 40 +++++++++++++++++++++++++++++ .github/workflows/knip.yml | 27 +++++++++---------- 3 files changed, 63 insertions(+), 24 deletions(-) create mode 100644 .github/workflows/knip-reporter.yml diff --git a/.github/workflows/jest-testing.yml b/.github/workflows/jest-testing.yml index 69af0ea..f5d93ee 100644 --- a/.github/workflows/jest-testing.yml +++ b/.github/workflows/jest-testing.yml @@ -1,13 +1,12 @@ name: Run Jest testing suite on: workflow_dispatch: - workflow_run: - workflows: ["Knip"] - types: - - completed + pull_request: env: NODE_ENV: "test" + SUPABASE_URL: "http://127.0.0.1:3000" + SUPABASE_KEY: "supabase-key" jobs: testing: @@ -21,14 +20,13 @@ jobs: - uses: actions/checkout@master with: fetch-depth: 0 - + - name: Enable corepack run: corepack enable - - name: Jest With Coverage Comment - # Ensures this step is run even on previous step failure (e.g. test failed) + - name: Jest With Coverage + run: yarn install --immutable --immutable-cache --check-cache && yarn test + + - name: Add Jest Report to Summary if: always() - uses: ArtiomTr/jest-coverage-report-action@v2 - with: - package-manager: yarn - prnumber: ${{ github.event.pull_request.number || github.event.workflow_run.pull_requests[0].number }} + run: echo "$(cat test-dashboard.md)" >> $GITHUB_STEP_SUMMARY diff --git a/.github/workflows/knip-reporter.yml b/.github/workflows/knip-reporter.yml new file mode 100644 index 0000000..a396735 --- /dev/null +++ b/.github/workflows/knip-reporter.yml @@ -0,0 +1,40 @@ +name: Knip-reporter + +on: + workflow_run: + workflows: ["Knip"] + types: + - completed + +permissions: write-all + +jobs: + knip-reporter: + runs-on: ubuntu-latest + if: ${{ github.event.workflow_run.conclusion != 'success' }} + steps: + - uses: actions/download-artifact@v4 + with: + name: knip-results + run-id: ${{ github.event.workflow_run.id }} + github-token: ${{ secrets.GITHUB_TOKEN }} + + - name: Read pr number + id: pr-number + uses: juliangruber/read-file-action@v1 + with: + path: ./pr-number.txt + trim: true + + - name: Report knip results to pull request + uses: gitcoindev/knip-reporter@main + with: + verbose: true + comment_id: ${{ github.workflow }}-reporter + command_script_name: knip-ci + annotations: true + ignore_results: false + json_input: true + json_input_file_name: knip-results.json + pull_request_number: ${{ steps.pr-number.outputs.content }} + token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/knip.yml b/.github/workflows/knip.yml index 67837dc..d9237eb 100644 --- a/.github/workflows/knip.yml +++ b/.github/workflows/knip.yml @@ -1,11 +1,9 @@ name: Knip on: - pull_request_target: + pull_request: workflow_dispatch: -permissions: write-all - jobs: run-knip: runs-on: ubuntu-latest @@ -17,18 +15,21 @@ jobs: uses: actions/setup-node@v4 with: node-version: 20.10.0 - - - name: Enable corepack - run: corepack enable - name: Install toolchain run: yarn install - - name: Report knip results to pull request - uses: Codex-/knip-reporter@v2 + - name: Store PR number + run: echo ${{ github.event.number }} > pr-number.txt + + - name: Run Knip + run: yarn knip || yarn knip --reporter json > knip-results.json + + - name: Upload knip result + if: failure() + uses: actions/upload-artifact@v4 with: - verbose: true - comment_id: ${{ github.workflow }}-reporter - command_script_name: knip-ci - annotations: true - ignore_results: false + name: knip-results + path: | + knip-results.json + pr-number.txt