Skip to content

Commit 80e0ff9

Browse files
authored
build: change to strict versions (#38)
1 parent a937baf commit 80e0ff9

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/pr-name-linter.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ jobs:
2323
node-version: 20.x
2424

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

2828
- name: Run PR name linter
29-
run: echo "${{ github.event.pull_request.title }}" | npx commitlint
29+
run: echo "$TITLE" | npx commitlint
30+
env:
31+
TITLE: ${{ github.event.pull_request.title }}

actions/run-lighthouse-tests/dist/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

actions/run-lighthouse-tests/main.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
setOutput,
1212
} from '@elementor/editor-github-actions-utils';
1313

14-
const LHCI_VERSION = '0.14.x';
14+
const LHCI_VERSION = '0.14.0';
1515
const OUTPUT_DIR = path.resolve(process.cwd(), './lhci');
1616

1717
const AVAILABLE_CATEGORIES = [

0 commit comments

Comments
 (0)