This commit is contained in:
parent
bab91604c9
commit
4c086e2ba1
2 changed files with 18 additions and 1 deletions
17
.drone.yml
Normal file
17
.drone.yml
Normal 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
|
2
makefile
2
makefile
|
@ -3,6 +3,6 @@ test-w:
|
|||
deno test --allow-read --watch
|
||||
|
||||
test:
|
||||
deno test
|
||||
deno test --allow-read
|
||||
|
||||
|
||||
|
|
Reference in a new issue