Skip to content

Commit 38eae82

Browse files
authored
fix(run-lighthouse-tests): remove dot from report dir (#32)
It will allow upload reports using GitHub action artifacts without the need to `include-hidden-files`
1 parent d02dca0 commit 38eae82

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ node_modules/
33
.idea/
44
.DS_Store/
55
tmp/
6-
.lhci/
6+
lhci/
77
.lighthouseci/
88
.wp-env.json
99
.lighthouserc.json

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
@@ -12,7 +12,7 @@ import {
1212
} from '@elementor-editor-github-actions/utils';
1313

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

1717
const AVAILABLE_CATEGORIES = [
1818
'performance',

0 commit comments

Comments
 (0)