Skip to content

Commit

Permalink
ci: ✏️ fix typo in jos
Browse files Browse the repository at this point in the history
  • Loading branch information
jooyoungseo committed Feb 2, 2024
1 parent bea16e6 commit 2e0d7de
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions .github/workflows/commit-message-lint.yml
Original file line number Diff line number Diff line change
@@ -1,28 +1,28 @@
name: Lint Commit Messages

on:
on:
push:
branches:
- main
pull_request:

cjobs:
jobs:
commitlint:
runs-on: ubuntu-latest

steps:
- name: Check out the repository
uses: actions/checkout@v2
with:
fetch-depth: 0 # Ensures commit history is pulled
- name: Check out the repository
uses: actions/checkout@v2
with:
fetch-depth: 0 # Ensures commit history is pulled

- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 'lts/*'
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 'lts/*'

- name: Install Dependencies
run: yarn install
- name: Install Dependencies
run: yarn install

- name: Lint Commit Messages
run: npx commitlint --from=HEAD~1 --to=HEAD --verbose
- name: Lint Commit Messages
run: npx commitlint --from=HEAD~1 --to=HEAD --verbose

0 comments on commit 2e0d7de

Please sign in to comment.