File tree Expand file tree Collapse file tree 5 files changed +12
-7
lines changed Expand file tree Collapse file tree 5 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1
- 2.2.12
1
+ 2.2.12
Original file line number Diff line number Diff line change 19
19
with :
20
20
tag : ${{ steps.tag_version.outputs.new_tag }}
21
21
name : Release ${{ steps.tag_version.outputs.new_tag }}
22
- body : ${{ steps.tag_version.outputs.changelog }}
22
+ body : ${{ steps.tag_version.outputs.changelog }}
Original file line number Diff line number Diff line change 27
27
run : echo "✅ Docker image built and ran successfully!"
28
28
- name : 🚨 CI Docker workflow failed
29
29
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."
Original file line number Diff line number Diff line change @@ -15,10 +15,15 @@ jobs:
15
15
16
16
- name : 📦 Setup Deno (latest stable)
17
17
uses : denoland/setup-deno@v2
18
+ id : deno-version
18
19
with :
19
- deno-version : .dvmrc
20
+ deno-version-file : .dvmrc
20
21
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
22
27
run : deno run lint
23
28
24
29
- name : 🎨 Run Formatter
33
38
run : echo "✅ All TypeScript checks passed!"
34
39
- name : 🚨 CI TypeScript workflow failed
35
40
if : failure()
36
- run : echo "❌ TypeScript checks failed. Please review the logs above."
41
+ run : echo "❌ TypeScript checks failed. Please review the logs above."
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ The `justfile` provides a set of standardized commands for common development ta
54
54
- ** test**
55
55
- Runs all Deno tests in the ` src/tests/ ` directory.
56
56
- 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/ ) ._
58
58
59
59
### Linting and Formatting
60
60
You can’t perform that action at this time.
0 commit comments