We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 32b91d1 commit 3bec004Copy full SHA for 3bec004
1 file changed
.github/workflows/deno.yml
@@ -0,0 +1,24 @@
1
+name: Deno
2
+
3
+on:
4
+ pull_request:
5
+ branches: [main]
6
+ push:
7
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