Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions .github/workflows/runtime-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ jobs:
- name: Perform Tests
run: npm test

test-deno:
name: Test on Deno
test-deno-with-npm-create:
name: Test on Deno using 'npm create'
runs-on: ubuntu-latest
steps:
- uses: actions/setup-node@v4 # needed to call the scaffolding `npm create` command
Expand All @@ -64,3 +64,16 @@ jobs:
run: npm create oak-deno@latest -- -y
- name: Perform Tests
run: deno task test

test-deno-with-deno-init:
name: Test on Deno using 'deno init'
runs-on: ubuntu-latest
steps:
- name: Setup Deno
uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Scaffold App
run: deno run -A npm:create-oak-deno@latest -- -y
- name: Perform Tests
run: deno task test
Loading