Skip to content

Commit

Permalink
test: commitlint github actions
Browse files Browse the repository at this point in the history
Co-authored-by: Soha Alboghdady ([email protected])
Co-authored-by: Raghunath Deshpande ([email protected])
  • Loading branch information
raghunathd8 committed Jul 6, 2023
1 parent 0048927 commit 8322e87
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/commitlint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: CI

on: [pull_request]

jobs:
commitlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Install required dependencies
run: |
sudo apt install -y git curl
curl -sL https://deb.nodesource.com/setup_14.x | sudo -E bash -
sudo DEBIAN_FRONTEND=noninteractive apt install -y nodejs
- name: Print versions
run: |
node --version
npm --version
npx commitlint --version
- name: Install commitlint
run: |
npm install -g @commitlint/cli @commitlint/config-conventional
- name: Configure commitlint
run: |
echo "module.exports = {extends: ['@commitlint/config-conventional']}" > commitlint.config.js
- name: Validate PR commits with commitlint
if: github.event_name == 'pull_request'
run: npx commitlint --from ${{ github.event.pull_request.head.sha }}~${{ github.event.pull_request.commits }} --to ${{ github.event.pull_request.head.sha }} --verbose

0 comments on commit 8322e87

Please sign in to comment.