From 0b4de08bcccab8ea653a22268c8e76c0d1224442 Mon Sep 17 00:00:00 2001 From: gordsport Date: Tue, 6 Feb 2024 20:20:12 +0000 Subject: [PATCH] fix: correct paths --- .github/workflows/lint-pr.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/lint-pr.yml b/.github/workflows/lint-pr.yml index 689a2dde7c..67c88b3d6d 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