ditto/.gitlab-ci.yml

19 lines
211 B
YAML

image: denoland/deno:1.39.0
default:
interruptible: true
stages:
- test
fmt:
stage: test
script: deno fmt --check
lint:
stage: test
script: deno lint
test:
stage: test
script: deno task test