> For the complete CircleCI developer hub index, see [llms.txt](https://circleci.com/developer/llms.txt)

# ksylvest/deno

Install [Deno](https://deno.com/) for building or testing your project.


## Commands

### install

Install Deno within a build.


## Examples

### example

The steps needed to use Deno on CircleCI


```yaml
version: '2.1'
orbs:
  deno: ksylvest/budenon@1.0.1
jobs:
  example:
    docker:
      - image: cimg/base:stable
    steps:
      - checkout
      - deno/install
      - run: deno run main.ts
workflows:
  main:
    jobs:
      - example
```