ci: add tests
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Dmitriy Pleshevskiy 2022-06-14 12:52:51 +03:00
parent bab91604c9
commit 4c086e2ba1
Signed by: pleshevskiy
GPG Key ID: 1B59187B161C0215
2 changed files with 18 additions and 1 deletions

17
.drone.yml Normal file
View File

@ -0,0 +1,17 @@
kind: pipeline
type: docker
name: default
trigger:
branch:
- main
event:
- push
- pull_request
steps:
- name: tests
image: denoland/deno:alpine-1.22.3
commands:
- cd /app
- deno test --allow-read

View File

@ -3,6 +3,6 @@ test-w:
deno test --allow-read --watch
test:
deno test
deno test --allow-read