Skip to content

Commit 380e110

Browse files
committed
chore(ci): print Deno's version
Diagnosing the recent failures in the size report workflow.
1 parent 8fc4685 commit 380e110

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,9 @@ jobs:
6363
run: sudo snap install deno
6464

6565
- name: Check crate metadata
66-
run: deno run --allow-read scripts/check-workspace.ts
66+
run: |
67+
deno --version
68+
deno run --allow-read scripts/check-workspace.ts
6769
6870
# Build examples
6971
build-examples:

.github/workflows/doc.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ jobs:
3131
args: -p r3_port_std -p r3_port_arm -p r3_port_arm_m -p r3_port_riscv -p r3_support_rp2040 -p r3_support_rza1 -p r3_portkit -p r3_kernel -p r3 -p r3_core --all-features
3232

3333
- name: Redirect non-local crate documentation to docs.rs
34-
run: deno run -A scripts/externalize-non-local-docs.ts -y
34+
run: |
35+
deno --version
36+
deno run -A scripts/externalize-non-local-docs.ts -y
3537
3638
- name: Check output
3739
run: |

.github/workflows/report-size.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ jobs:
6060
6161
- name: Generate a size report
6262
run: |
63+
deno --version
6364
deno run -A scripts/report-size.ts -- --target ${{ matrix.runner_target }} ${{ matrix.runner_args }} -- -basepri > size-report.md
6465
6566
- name: Publish the report as a check run

0 commit comments

Comments
 (0)