This action sets up deno environment for use in actions by:
- optionally downloading and caching a version of deno - versioned and add to PATH
See action.yml
Basic:
steps:
- uses: actions/checkout@master
- uses: denolib/setup-deno@v1
with:
deno-version: 'v0.18.0'
- run: deno https://deno.land/welcome.ts
Matrix Testing:
jobs:
build:
runs-on: ubuntu-16.04
strategy:
matrix:
deno: [ 'v0.18.0', 'v0.17.0' ]
name: Deno ${{ matrix.deno }} sample
steps:
- uses: actions/checkout@master
- name: Setup deno
uses: denolib/setup-deno@v1
with:
deno-version: ${{ matrix.deno }}
- run: deno https://deno.land/welcome.ts
The scripts and documentation in this project are released under the MIT License
Contributions are welcome! See Contributor's Guide