Skip to content

Commit

Permalink
ci: Add deno smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
eemeli committed Nov 29, 2024
1 parent 561f8b1 commit c579607
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/deno.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Deno

on:
pull_request:
branches: [main]
push:
branches: [main]
workflow_dispatch:

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
deno-version: [v1.x, v2.x]

steps:
- uses: actions/checkout@v4
with: { submodules: true }
- uses: denoland/setup-deno@v2
with:
deno-version: ${{ matrix.deno-version }}
- run: deno src/public-api.ts

0 comments on commit c579607

Please sign in to comment.