Skip to content

Commit 23d29d5

Browse files
committed
Fix working directory.
1 parent 737c931 commit 23d29d5

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/benchmarks.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,20 +28,20 @@ jobs:
2828
ref: master
2929

3030
- name: Install tachometer
31-
working-directory: ./benchmarks
31+
working-directory: ./benchmarks/lit-element
3232
run: npm install --save-dev tachometer@^0.5.9
3333

3434
- name: Copy tachometer config
35-
working-directory: ./benchmarks
36-
run: cp ../lit-element/tachometer.json .
35+
working-directory: ./benchmarks/lit-element
36+
run: cp ../../lit-element/tachometer.json .
3737

3838
- name: Benchmark
39-
working-directory: ./benchmarks
39+
working-directory: ./benchmarks/lit-element
4040
run: npx tach --config tachometer.json --json-file results.json
4141

4242
- name: Report
4343
uses: andrewiggins/tachometer-reporter-action@v2
4444
with:
45-
path: ./benchmarks/results.json
45+
path: ./benchmarks/lit-element/results.json
4646
pr-bench-name: this-change
4747
base-bench-name: master

tachometer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"dependencies": {
1919
"lit-element": {
2020
"kind": "git",
21-
"repo": "..",
21+
"repo": "../../lit-element",
2222
"ref": "HEAD",
2323
"setupCommands": [
2424
"npm ci",

0 commit comments

Comments
 (0)