Skip to content

Commit

Permalink
updated runtime tests (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
Thesephi authored Dec 6, 2024
1 parent f7fd7f3 commit 0b0ce08
Showing 1 changed file with 15 additions and 2 deletions.
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

0 comments on commit 0b0ce08

Please sign in to comment.