From 69875eba01b579db5988b02fc2399083e480321b Mon Sep 17 00:00:00 2001 From: "Mack (Maksym Iv)" Date: Wed, 17 Jun 2026 18:11:22 +0300 Subject: [PATCH] fix: Simplify the "PR checks" workflow --- .github/workflows/reusable_pr_checks.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/reusable_pr_checks.yml b/.github/workflows/reusable_pr_checks.yml index f473e62..972b900 100644 --- a/.github/workflows/reusable_pr_checks.yml +++ b/.github/workflows/reusable_pr_checks.yml @@ -14,14 +14,13 @@ jobs: pr_title_lint: name: 'pr-title-lint' runs-on: ${{ inputs.runs-on }} + container: oven/bun:1.3.14-alpine@sha256:5acc90a93e91ff07bf72aa90a7c9f0fa189765aec90b47bdbf2152d2196383c0 timeout-minutes: ${{ inputs.timeout-minutes }} steps: - name: Checkout uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3 - - name: Install commitlint - run: npm install -D @commitlint/cli @commitlint/config-conventional - name: Validate PR commits with commitlint env: PR_TITLE: ${{ github.event.pull_request.title }} run: | - echo "${PR_TITLE}" | npx commitlint --verbose + echo "${PR_TITLE}" | bunx commitlint --verbose