We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7fd7f3 commit 0b0ce08Copy full SHA for 0b0ce08
.github/workflows/runtime-tests.yml
@@ -51,8 +51,8 @@ jobs:
51
- name: Perform Tests
52
run: npm test
53
54
- test-deno:
55
- name: Test on Deno
+ test-deno-with-npm-create:
+ name: Test on Deno using 'npm create'
56
runs-on: ubuntu-latest
57
steps:
58
- uses: actions/setup-node@v4 # needed to call the scaffolding `npm create` command
@@ -64,3 +64,16 @@ jobs:
64
run: npm create oak-deno@latest -- -y
65
66
run: deno task test
67
+
68
+ test-deno-with-deno-init:
69
+ name: Test on Deno using 'deno init'
70
+ runs-on: ubuntu-latest
71
+ steps:
72
+ - name: Setup Deno
73
+ uses: denoland/setup-deno@v2
74
+ with:
75
+ deno-version: v2.x
76
+ - name: Scaffold App
77
+ run: deno run -A npm:create-oak-deno@latest -- -y
78
+ - name: Perform Tests
79
+ run: deno task test
0 commit comments