Skip to content

Commit 3bec004

Browse files
committed
ci: Add deno smoke test
1 parent 32b91d1 commit 3bec004

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/deno.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Deno
2+
3+
on:
4+
pull_request:
5+
branches: [main]
6+
push:
7+
branches: [main]
8+
workflow_dispatch:
9+
10+
jobs:
11+
test:
12+
runs-on: ubuntu-latest
13+
14+
strategy:
15+
matrix:
16+
deno-version: [v1.x, v2.x]
17+
18+
steps:
19+
- uses: actions/checkout@v4
20+
with: { submodules: true }
21+
- uses: denoland/setup-deno@v2
22+
with:
23+
deno-version: ${{ matrix.deno-version }}
24+
- run: deno src/public-api.ts

0 commit comments

Comments
 (0)