Skip to content

Commit

Permalink
👷 Add Github deno workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MaximilianHeidenreich committed Dec 19, 2020
1 parent e01f27d commit b2006af
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/deno.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
deno: [1.6.1, 1.5.1]
name: Test with Deno ${{ matrix.deno }}

steps:
- uses: actions/checkout@master

- name: Setup Deno
uses: denolib/setup-deno@master
with:
deno-version: ${{ matrix.deno }}

- name: Setup Node
uses: actions/setup-node@master
with:
node-version: 12

- name: Print deno version
run: deno --version

#- name: Check format
# run: deno fmt --check **/*.ts

#- name: Run tests
# run: deno test.ts

0 comments on commit b2006af

Please sign in to comment.