@@ -2,21 +2,21 @@ name: Deno Core Tests
22
33on :
44 push :
5- branches : [ main, develop, feature/* ]
5+ branches : [main, develop, feature/*]
66 paths :
7- - ' packages/core/**'
8- - ' .github/workflows/deno-test.yml'
7+ - " packages/core/**"
8+ - " .github/workflows/deno-test.yml"
99 pull_request :
10- branches : [ main, develop ]
10+ branches : [main, develop]
1111 paths :
12- - ' packages/core/**'
13- - ' .github/workflows/deno-test.yml'
12+ - " packages/core/**"
13+ - " .github/workflows/deno-test.yml"
1414 workflow_dispatch :
1515 inputs :
1616 test_type :
17- description : ' Type of test to run'
17+ description : " Type of test to run"
1818 required : true
19- default : ' all'
19+ default : " all"
2020 type : choice
2121 options :
2222 - all
4242 strategy :
4343 matrix :
4444 os : [ubuntu-latest, windows-latest, macos-latest]
45- deno-version : [' 2.4.x', ' 2.x' ]
45+ deno-version : [" 2.4.x", " 2.x" ]
4646 fail-fast : false
4747
4848 steps :
@@ -195,7 +195,7 @@ jobs:
195195 run : |
196196 echo "Checking test execution time..."
197197 time deno task test
198-
198+
199199 echo "Running individual test timing..."
200200 for test_file in tests/*.ts; do
201201 if [[ "$test_file" != "tests/run_tests.ts" ]]; then
@@ -223,7 +223,7 @@ jobs:
223223 run : |
224224 echo "Checking dependency tree..."
225225 deno info mod.ts
226-
226+
227227 echo "Checking for insecure HTTP imports..."
228228 if grep -r "http://" . --include="*.ts" --include="*.js"; then
229229 echo "⚠️ Found HTTP imports (should use HTTPS)"
@@ -263,7 +263,7 @@ jobs:
263263 run : |
264264 echo "Checking JSR publishing readiness..."
265265 deno publish --dry-run --allow-dirty || echo "Package would fail to publish to JSR"
266-
266+
267267 echo "Validating deno.json..."
268268 deno task server:compile || echo "Server compilation task failed"
269269
0 commit comments