Skip to content

Commit

Permalink
feat: disable commit lint on flow to execute release on main
Browse files Browse the repository at this point in the history
  • Loading branch information
lfbarrile01 committed Feb 13, 2025
1 parent 5065386 commit 9ae3816
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,19 +96,19 @@ jobs:
- name: Run Unit Tests
run: npm test

commitlint:
runs-on: ubuntu-latest
name: Run Commitlint to check commit message format
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '22'
- name: Install dependencies
run: npm install
- name: Run Commitlint
run: |
npx --no-install commitlint --from=HEAD~1 --to=HEAD
# commitlint:
# runs-on: ubuntu-latest
# name: Run Commitlint to check commit message format
# steps:
# - uses: actions/checkout@v4
# with:
# fetch-depth: 0
# - name: Set up Node.js
# uses: actions/setup-node@v3
# with:
# node-version: '22'
# - name: Install dependencies
# run: npm install
# - name: Run Commitlint
# run: |
# npx --no-install commitlint --from=HEAD~1 --to=HEAD

0 comments on commit 9ae3816

Please sign in to comment.