Add GitLab CI

This commit is contained in:
Alex Gleason 2023-03-04 23:28:18 -06:00
parent 2acfecc1eb
commit 7da1fed11e
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
1 changed files with 19 additions and 0 deletions

19
.gitlab-ci.yml Normal file
View 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