setup-deno icon indicating copy to clipboard operation
setup-deno copied to clipboard

Set up your GitHub Actions workflow with a specific version of Deno

Results 12 setup-deno issues
Sort by recently updated
recently updated
newest added

Adds support for both .tool-versions and .dvmrc, implementation mirrors that of [setup-node](https://github.com/actions/setup-node/blob/c2ac33f2c62f978d6c944d9648125a294e56dc0b/src/util.ts#L67)

Hello! I tried with [nektos/act](https://github.com/nektos/act) locally, but setup-deno failed. Actions Setting: ```yaml name: CI on: [push, pull_request] jobs: build: runs-on: ubuntu-latest strategy: name: Deno CI steps: - uses: actions/checkout@master -...

This will auto-update the v1 (or future majors) tag to the latest release using [actions/publish-action](https://github.com/actions/publish-action). This makes it so that the very examples from the repo's README.md make use of...

Like `actions/setup-node`, `deno-version` still takes precedence. Fixes #32

setup-node uses github's [problemMatcher](https://github.com/actions/toolkit/blob/main/docs/problem-matchers.md) to automatically add error message to [TSC errors](https://github.com/actions/setup-node/blob/main/.github/tsc.json); it'd be great to have the same functionality, along with matchers for fmt and lint errors.

When running in minimal containers the action fails due to a lack of `unzip`, eg: https://github.com/teaxyz/cli/actions/runs/4105361554/jobs/7082110062#step:4:8 You may feel this is “working as designed” in which case I’ll submit a...

Instead of writing: ```yaml - uses: denoland/setup-deno@v1 with: deno-version: v1.x ``` It would be nice to write: ```yaml - uses: denoland/setup-deno@v1 ``` Then when deno v2 is released we can...

I personally use a `.dvmrc` file to keep track of the deno version used for that specific repo/project, so it would be helpful to have the possibility to have the...

It would be nice if this action had a way to cache deno modules that had been downloaded in previous runs, similarly to https://github.com/actions/setup-node#caching-global-packages-data The cache looks like it is...

Hi, it might be convenient to document in the Readme how to test multiple versions using matrix builds, e.g.: ```yml # This workflow will test on Deno lastest stable major...