Skip to content

Merge pull request #765 from Availity/fix/upload-types #15

Merge pull request #765 from Availity/fix/upload-types

Merge pull request #765 from Availity/fix/upload-types #15

Workflow file for this run

name: Lint Commit Messages

Check failure on line 1 in .github/workflows/commitlint.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/commitlint.yml

Invalid workflow file

`never` is not a valid event name
# Set to pull_request when ready to turn on
on: [never]
jobs:
commitlint:
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- name: Install Dependencies
run: yarn install --immutable
- name: Lint Commit Message
uses: wagoid/commitlint-github-action@v5
env:
NODE_PATH: ${{ github.workspace }}/node_modules
with:
configFile: ${{ github.workspace }}/commitlint.config.js