File tree 11 files changed +91
-66
lines changed
11 files changed +91
-66
lines changed Original file line number Diff line number Diff line change @@ -19,20 +19,20 @@ jobs:
19
19
runs-on : ubuntu-latest
20
20
strategy :
21
21
matrix :
22
- deno-version : [1 .x]
22
+ deno-version : [2 .x]
23
23
24
24
steps :
25
25
- name : ⬇️ Checkout repo
26
- uses : actions/checkout@v3
26
+ uses : actions/checkout@v4
27
27
28
28
- name : 🦕 Setup Deno
29
- uses : denoland/setup-deno@v1
29
+ uses : denoland/setup-deno@v2
30
30
with :
31
31
deno-version : ${{ matrix.deno-version }}
32
32
33
33
- name : ⚡ Run Tests
34
+ working-directory : packages/port-queue
34
35
run : |
35
- cd packages/port-queue
36
36
deno task test
37
37
env :
38
38
CI : true
@@ -43,12 +43,17 @@ jobs:
43
43
runs-on : ubuntu-latest
44
44
steps :
45
45
- name : ⬇️ Checkout repo
46
- uses : actions/checkout@v3
46
+ uses : actions/checkout@v4
47
47
48
48
- name : 🦕 Setup Deno
49
- uses : denoland/setup-deno@v1
49
+ uses : denoland/setup-deno@v2
50
50
with :
51
- deno-version : v1.x
51
+ deno-version : v2.x
52
+
53
+ - name : ✨ Publish to JSR
54
+ working-directory : packages/port-queue
55
+ run : |
56
+ deno publish --allow-slow-types
52
57
53
58
# - name: 🥚 Setup Eggs CLI
54
59
# run: |
Original file line number Diff line number Diff line change 1
- # README
1
+ <h1 align =" center " >hyper-port-queue</h1 >
2
+ <p align =" center " >Port for the Queue Service in the <a href =" https://hyper.io/ " >hyper</a > Service Framework</p >
3
+ </p >
4
+ <p align =" center " >
5
+ <a href =" https://nest.land/package/hyper-port-queue " ><img src =" https://nest.land/badge.svg " alt =" Nest Badge " /></a >
6
+ <a href =" https://jsr.io/@hyper63/port-queue " ><img src =" https://jsr.io/badges/@hyper63/port-queue " alt =" " /></a >
7
+ <a href =" https://github.com/hyper63/hyper63/actions/workflows/port-queue.yml " ><img src =" https://github.com/hyper63/hyper63/actions/workflows/port-queue.yml/badge.svg " alt =" Test " /></a >
8
+ </p >
2
9
3
10
Queue Port
4
11
5
12
- Create a Queue
6
13
- Delete a Queue
7
- - Post a JOB to a Queue
8
- - Get Jobs from a queue
14
+ - Post a Job to a Queue
15
+ - Get Jobs from a Queue
9
16
- Cancel a Job
10
17
- Retry a Job
11
18
12
- ## Documentation
19
+ <!-- toc -->
13
20
14
- https://docs.hyper63.com
21
+ - [ Test ] ( #test )
15
22
16
- ## Dev Environment
23
+ <!-- tocstop -->
17
24
18
- ### Build
25
+ ## Test
19
26
20
27
```
21
- yarn build
22
- ```
23
-
24
- ### Test
25
-
26
- ```
27
- yarn test
28
+ deno task test
28
29
```
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " @hyper63/port-queue" ,
3
+ "version" : " 0.3.0" ,
4
+ "exports" : " ./mod.ts" ,
5
+ "tasks" : {
6
+ "test" : " deno lint && deno fmt --check && deno test --no-check" ,
7
+ "cache" : " deno install --entrypoint mod.ts"
8
+ },
9
+ "imports" : {
10
+
11
+ "@std/assert" : " jsr:@std/assert@1"
12
+ },
13
+ "fmt" : {
14
+ "include" : [" ./" ],
15
+ "lineWidth" : 100 ,
16
+ "singleQuote" : true ,
17
+ "semiColons" : false
18
+ },
19
+ "lint" : {
20
+ "rules" : {
21
+ "exclude" : [
22
+ " no-slow-types"
23
+ ]
24
+ }
25
+ },
26
+ "publish" : {
27
+ "include" : [
28
+ " *"
29
+ ],
30
+ "exclude" : [
31
+ " **/*.test.ts"
32
+ ]
33
+ }
34
+ }
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
"$schema" :
" https://x.nest.land/[email protected] /src/schema.json" ,
3
3
"name" : " hyper-port-queue" ,
4
4
"entry" : " ./mod.ts" ,
5
- "description" : " Hyper service framework port for Queue adapters " ,
5
+ "description" : " Port for the Queue Service in the hyper Service Framework " ,
6
6
"homepage" : " https://github.com/hyper63/hyper" ,
7
7
"repo" : " https://github.com/hyper63/hyper" ,
8
8
"version" : " 0.3.0" ,
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
// deno-lint-ignore-file no-unused-vars ban-ts-comment
2
- import { assert , assertRejects } from './dev_deps.ts '
2
+ import { assert , assertRejects } from '@std/assert '
3
3
4
4
import { queue , type QueuePort } from './mod.ts'
5
5
Original file line number Diff line number Diff line change 1
- import { z , ZodRawShape } from './deps.ts '
1
+ import { z , type ZodRawShape } from 'zod '
2
2
3
3
/**
4
4
* The hyper response schema. MOST adapter methods return this shape.
You can’t perform that action at this time.
0 commit comments