Skip to content

Commit ba7378a

Browse files
committed
chore: fix ci workflowfor deno
1 parent c3c8304 commit ba7378a

File tree

5 files changed

+12
-7
lines changed

5 files changed

+12
-7
lines changed

.dvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.2.12
1+
2.2.12

.github/workflows/bump.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ jobs:
1919
with:
2020
tag: ${{ steps.tag_version.outputs.new_tag }}
2121
name: Release ${{ steps.tag_version.outputs.new_tag }}
22-
body: ${{ steps.tag_version.outputs.changelog }}
22+
body: ${{ steps.tag_version.outputs.changelog }}

.github/workflows/ci-docker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ jobs:
2727
run: echo "✅ Docker image built and ran successfully!"
2828
- name: 🚨 CI Docker workflow failed
2929
if: failure()
30-
run: echo "❌ Docker build or run failed. Please review the logs above."
30+
run: echo "❌ Docker build or run failed. Please review the logs above."

.github/workflows/ci-typescript.yaml

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,15 @@ jobs:
1515

1616
- name: 📦 Setup Deno (latest stable)
1717
uses: denoland/setup-deno@v2
18+
id: deno-version
1819
with:
19-
deno-version: .dvmrc
20+
deno-version-file: .dvmrc
2021

21-
- name: 🧹 Run Linter
22+
- name: ℹ️ Check Deno Version
23+
run: |
24+
echo "📦 Deno version information: ${{ steps.deno-version.outputs.version }}"
25+
26+
- name: 🧹 Run Linter & Formatter
2227
run: deno run lint
2328

2429
- name: 🎨 Run Formatter
@@ -33,4 +38,4 @@ jobs:
3338
run: echo "✅ All TypeScript checks passed!"
3439
- name: 🚨 CI TypeScript workflow failed
3540
if: failure()
36-
run: echo "❌ TypeScript checks failed. Please review the logs above."
41+
run: echo "❌ TypeScript checks failed. Please review the logs above."

docs/DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ The `justfile` provides a set of standardized commands for common development ta
5454
- **test**
5555
- Runs all Deno tests in the `src/tests/` directory.
5656
- Usage: `just test`
57-
- _Ensure all new features and bug fixes are covered by tests. See [Deno Testing Docs](https://docs.deno.com/runtime/fundamentals/testing/)._
57+
- _Ensure all new features and bug fixes are covered by tests. See [Deno Testing Docs](https://docs.deno.com/runtime/fundamentals/testing/)._
5858

5959
### Linting and Formatting
6060

0 commit comments

Comments
 (0)