Skip to content

Commit 707bb19

Browse files
committed
CI/Deno
1 parent e3bfa8f commit 707bb19

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/ci-deno.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: CI/Deno
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
workflow_dispatch:
9+
10+
jobs:
11+
nodejs:
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
- name: Setup Deno
17+
uses: denoland/setup-deno@v2
18+
with:
19+
deno-version: "v2.x"
20+
- run: deno test test/deno_test.ts
21+

0 commit comments

Comments
 (0)