Skip to content

Commit 8573bd1

Browse files
committed
feat(git): add CI workflow for testing
1 parent eab5af4 commit 8573bd1

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ci.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
jobs:
2+
build:
3+
runs-on: ubuntu-latest
4+
strategy:
5+
matrix:
6+
deno: ["v1.5.0", "nightly"]
7+
name: Deno ${{ matrix.deno }}
8+
steps:
9+
- uses: actions/checkout@v2
10+
- name: Setup Deno
11+
uses: denolib/setup-deno@v2
12+
with:
13+
deno-version: ${{ matrix.deno }}
14+
- run: |
15+
deno --version
16+
deno test --allow-read

0 commit comments

Comments
 (0)