mirror of
https://gitlab.com/soapbox-pub/ditto.git
synced 2025-12-06 11:29:46 +00:00
Add GitLab CI
This commit is contained in:
parent
2acfecc1eb
commit
7da1fed11e
1 changed files with 19 additions and 0 deletions
19
.gitlab-ci.yml
Normal file
19
.gitlab-ci.yml
Normal file
|
|
@ -0,0 +1,19 @@
|
||||||
|
image: denoland/deno:1.31.1
|
||||||
|
|
||||||
|
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
|
||||||
Loading…
Add table
Reference in a new issue