Skip to content

Commit

Permalink
Update the workflow for the Deno
Browse files Browse the repository at this point in the history
  • Loading branch information
nazarhussain committed Feb 26, 2025
1 parent c858b92 commit deae516
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 93 deletions.
93 changes: 0 additions & 93 deletions .github/actions/multi-runtime-tests/action.yml

This file was deleted.

23 changes: 23 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,3 +89,26 @@ jobs:
run: bun run --filter '*' generate
- name: Unit Tests
run: bun run --bun --filter '*' test:unit

test-deno:
name: Tests Deno
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2-beta
with:
node-version: "22"
- uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- name: Install
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
# Deno does not run task in workspaces if same task exists on root package.json
- name: Clean root scripts
run: jq 'del( .scripts ) package.json > package.json'
- name: Generate
run: deno task --recursive generate
- name: Unit Tests
run: deno task --recursive test:unit

0 comments on commit deae516

Please sign in to comment.