We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 93f7819 commit 0e1c586Copy full SHA for 0e1c586
.github/workflows/main.yml
@@ -26,6 +26,23 @@ jobs:
26
- run: npm test
27
- run: npm run lint
28
29
+ check-deno-compatibility:
30
+ runs-on: ubuntu-latest
31
+
32
+ steps:
33
+ - uses: actions/checkout@v4
34
+ - uses: actions/setup-node@v4
35
+ with:
36
+ node-version: 18
37
+ cache: npm
38
+ - uses: denoland/setup-deno@v2
39
40
+ deno-version: v2.x
41
+ - run: npm ci
42
+ - run: npm run build
43
+ - name: Check Deno compatibility
44
+ run: deno check dist/**/*.js
45
46
publish:
47
runs-on: ubuntu-latest
48
if: github.event_name == 'release'
0 commit comments