Skip to content

Commit 0b0ce08

Browse files
authored
updated runtime tests (#39)
1 parent f7fd7f3 commit 0b0ce08

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

.github/workflows/runtime-tests.yml

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,8 @@ jobs:
5151
- name: Perform Tests
5252
run: npm test
5353

54-
test-deno:
55-
name: Test on Deno
54+
test-deno-with-npm-create:
55+
name: Test on Deno using 'npm create'
5656
runs-on: ubuntu-latest
5757
steps:
5858
- uses: actions/setup-node@v4 # needed to call the scaffolding `npm create` command
@@ -64,3 +64,16 @@ jobs:
6464
run: npm create oak-deno@latest -- -y
6565
- name: Perform Tests
6666
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

Comments
 (0)