You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
GitHub Action
Install Deno
v1.1.2
GitHub Action to set up Deno.
deno-version
- Deno version.- values:
<semver>
,<commit>
,'canary'
or'latest'
- default:
'latest'
- values:
version
- tag of the installed Deno binarydeno_path
- path of the installed Deno binary
Basic:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Deno
uses: maximousblk/setup-deno@v1 # Installs latest version
- run: deno -V
Matrix:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
deno: ['v1.7.0', 'v1.7.x', '1.x', '1', 'latest', 'canary']
steps:
- uses: actions/checkout@v2
- name: Setup Deno (${{ matrix.deno }})
uses: maximousblk/setup-deno@v1
with:
deno-version: ${{ matrix.deno }}
- run: deno -V
This project is licensed under The MIT License