Skip to content

build: upgrade node in pr-build #336

build: upgrade node in pr-build

build: upgrade node in pr-build #336

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

(Line: 3, Col: 6): Unexpected value 'never'
# 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@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
with:
fetch-depth: 0
- name: Setup Node
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0
with:
node-version: 22
cache: 'yarn'
cache-dependency-path: 'yarn.lock'
- name: Install Dependencies
run: yarn install --immutable
- name: Lint Commit Message
uses: wagoid/commitlint-github-action@9763196e10f27aef304c9b8b660d31d97fce0f99 # v5.5.1
env:
NODE_PATH: ${{ github.workspace }}/node_modules
with:
configFile: ${{ github.workspace }}/commitlint.config.js