From 8142954197ef36ae82b6c116f18525c1de6f16d5 Mon Sep 17 00:00:00 2001 From: MatthewPattell Date: Fri, 19 Apr 2024 15:01:10 +0200 Subject: [PATCH] chore: fix check pr workflow --- .github/workflows/pr-check.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 9aac796..d3ebcb0 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -39,12 +39,12 @@ jobs: node-version: ${{ needs.prepare.outputs.node-version }} cache: ${{ needs.prepare.outputs.enable-cache == 'yes' && 'npm' || '' }} - - name: Commit lint PR title - run: echo "${{ github.event.pull_request.title }}" | npx --no-install commitlint -g commitlint.config.js - - name: Install dependencies run: npm ci --ignore-scripts + - name: Commit lint PR title + run: echo "${{ github.event.pull_request.title }}" | npx --no-install commitlint -g commitlint.config.js + - name: Build lib run: npm run build:dev