diff --git a/.github/workflows/lint-pr.yml b/.github/workflows/lint-pr.yml index 689a2dde7c3..67c88b3d6df 100644 --- a/.github/workflows/lint-pr.yml +++ b/.github/workflows/lint-pr.yml @@ -22,7 +22,7 @@ jobs: - name: Setup node uses: actions/setup-node@v4 with: - node-version-file: '.github/config/.nvmrc' + node-version-file: '.github/workflows/config/.nvmrc' - name: Install dependencies run: | @@ -30,4 +30,4 @@ jobs: npm install --no-save @commitlint/cli @commitlint/config-conventional @commitlint/config-nx-scopes nx - name: Check PR title - run: echo "${{ github.event.pull_request.title }}" | npx commitlint --config ./.github/config/commitlint.config-ci.js + run: echo "${{ github.event.pull_request.title }}" | npx commitlint --config ./.github/workflows/config/commitlint.config-ci.js