mirror of
https://github.com/aljazceru/ditto.git
synced 2026-01-08 08:04:21 +01:00
19 lines
211 B
YAML
19 lines
211 B
YAML
image: denoland/deno:1.33.2
|
|
|
|
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 |