Skip to main content
Module

x/reno/.travis.yml

A thin, testable routing library designed to sit on top of Deno's standard HTTP module
Go to Latest
File
language: generic
before_install: - curl -fsSL https://deno.land/x/install/install.sh | sh -s v$(cat .deno-version) - alias deno="$HOME/.deno/bin/deno"
jobs: include: - stage: lint script: "./scripts/lint.sh" - stage: check formatting script: "./scripts/format-check.sh" - stage: unit tests script: "./scripts/test.sh" - stage: end-to-end tests script: "cd e2e-tests && ./ci.sh"