From b2f21ad856590498c497a35cb8d0770f2a23e2ca Mon Sep 17 00:00:00 2001 From: Joshua Graber <68428039+joshuagraber@users.noreply.github.com> Date: Thu, 25 Jul 2024 08:30:09 -0400 Subject: [PATCH] fix(workflows): skip commit message linting (#99) --- .github/workflows/pull.yaml | 4 ++-- .github/workflows/release.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pull.yaml b/.github/workflows/pull.yaml index ad944a9..a3dfdf4 100644 --- a/.github/workflows/pull.yaml +++ b/.github/workflows/pull.yaml @@ -34,8 +34,8 @@ jobs: node-version: '20.x' cache: 'npm' - run: npm ci - - name: Lint commit messages 🗂️ - run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose + # - name: Lint commit messages 🗂️ + # run: npx commitlint --from ${{ github.event.pull_request.base.sha }} --to ${{ github.event.pull_request.head.sha }} --verbose - name: Lint TS and CSS 🎨 run: npm run lint diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index ab7849a..77c83e2 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -43,8 +43,8 @@ jobs: - name: Lint TS and CSS 🎨 run: npm run lint - - name: Lint commit messages 🗂️ - run: npx commitlint --from HEAD~1 --to HEAD + # - name: Lint commit messages 🗂️ + # run: npx commitlint --from HEAD~1 --to HEAD - name: Run tests 📋 run: npm run test:ci