From bec1de6bc642e411d8892bb67eb6158b66bda955 Mon Sep 17 00:00:00 2001 From: eveeify Date: Thu, 28 Mar 2024 23:48:03 +1100 Subject: [PATCH] chore: removed the extra install step --- .github/workflows/Quality.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/Quality.yml b/.github/workflows/Quality.yml index 7ac7492..87a0c43 100644 --- a/.github/workflows/Quality.yml +++ b/.github/workflows/Quality.yml @@ -36,16 +36,12 @@ jobs: with: bun-version: latest - name: Install packages - run: | - bun install + run: bun install + - name: Print versions run: | bun --version bunx commitlint --version - - name: Install commitlint - run: | - bun install conventional-changelog-conventionalcommits - bun install commitlint@latest - name: Validate current commit (last commit) with commitlint if: github.event_name == 'push' run: bunx commitlint --from HEAD~1 --to HEAD --verbose