Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
CI/Deno
  • Loading branch information
gfx committed Feb 1, 2025
commit 707bb19393ccf9bd40c01b5cd8a13c71ff0162c2
21 changes: 21 additions & 0 deletions .github/workflows/ci-deno.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: CI/Deno

on:
push:
branches:
- main
pull_request:
workflow_dispatch:

jobs:
nodejs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- name: Setup Deno
uses: denoland/setup-deno@v2
with:
deno-version: "v2.x"
- run: deno test test/deno_test.ts

Loading