Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/pr-name-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ jobs:
node-version: 20.x

- name: Install Dependencies
run: npm install -g @commitlint/config-conventional@19 @commitlint/cli@19
run: npm install -g @commitlint/config-conventional@19.8.1 @commitlint/cli@19.8.1

- name: Run PR name linter
run: echo "${{ github.event.pull_request.title }}" | npx commitlint
run: echo "$TITLE" | npx commitlint
env:
TITLE: ${{ github.event.pull_request.title }}
2 changes: 1 addition & 1 deletion actions/run-lighthouse-tests/dist/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion actions/run-lighthouse-tests/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import {
setOutput,
} from '@elementor/editor-github-actions-utils';

const LHCI_VERSION = '0.14.x';
const LHCI_VERSION = '0.14.0';
const OUTPUT_DIR = path.resolve(process.cwd(), './lhci');

const AVAILABLE_CATEGORIES = [
Expand Down