Specify Deno version#978
Conversation
Maintain reproducability of runs.
|
Warning Review limit reached
Your plan currently allows 1 review/hour. Refill in 46 minutes and 2 seconds. Your organization has run out of usage credits. Purchase more in the billing tab. ⌛ How to resolve this issue?After more review capacity refills, a review can be triggered using the We recommend that you space out your commits to avoid hitting the rate limit. 🚦 How do rate limits work?CodeRabbit enforces hourly rate limits for each developer per organization. Our paid plans have higher rate limits than trial, open-source, and free plans. In all cases, review capacity refills continuously over time. Please see our FAQ for further information. ℹ️ Review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Run ID: 📒 Files selected for processing (1)
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
There was a problem hiding this comment.
Pull request overview
This PR improves CI reproducibility by pinning the Deno runtime version used in the GitHub Actions workflow, ensuring consistent behavior across runs and over time.
Changes:
- Pin
deno-version: 2.7.14for the Deno setup steps in lint, format, and type-check jobs. - Keep existing Deno cache behavior where already enabled.
Comments suppressed due to low confidence (2)
.github/workflows/ci.yml:95
- This repeats the same hardcoded
deno-versionvalue used elsewhere in the workflow. Consider using a shared workflow-levelenvvariable for the Deno version so it only needs to be updated in one place.
- name: 🦕 Set up Deno
uses: denoland/setup-deno@667a34cdef165d8d2b2e98dde39547c9daac7282 # v2.0.4
with:
deno-version: 2.7.14
.github/workflows/ci.yml:120
- The Deno version is hardcoded here as well as in other jobs. Centralizing it (e.g., workflow
env: DENO_VERSION) reduces the chance of future jobs accidentally running different Deno versions.
id: setup-deno
uses: denoland/setup-deno@667a34cdef165d8d2b2e98dde39547c9daac7282 # v2.0.4
with:
deno-version: 2.7.14
cache: true
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Maintain reproducibility of runs.