File tree 2 files changed +51
-17
lines changed
2 files changed +51
-17
lines changed Original file line number Diff line number Diff line change @@ -12,33 +12,26 @@ jobs:
12
12
steps :
13
13
- name : Checkout repo
14
14
uses : actions/checkout@v4
15
+ with :
16
+ ref : main
17
+
18
+ - name : Setup Pnpm
19
+ uses : pnpm/action-setup@v4
20
+ with :
21
+ version : 9.4.x
15
22
16
23
- name : Setup Node
17
24
uses : actions/setup-node@v4
18
25
with :
19
26
node-version : 20
20
27
registry-url : https://registry.npmjs.org
21
- # cache: pnpm
22
-
23
- - name : Cache pnpm modules
24
- uses : actions/cache@v4
25
- with :
26
- path : ~/.pnpm-store
27
- key : ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
28
- restore-keys : |
29
- ${{ runner.os }}-
28
+ cache : pnpm
30
29
31
30
- name : Pnpm install
32
- uses : pnpm/action-setup@v4
33
- with :
34
- version : 9.4.x
35
- run_install : |
36
- - recursive: true
37
- args: [--frozen-lockfile, --strict-peer-dependencies]
38
- - args: [--global, typedoc, typescript]
31
+ run : pnpm install --strict-peer-dependencies
39
32
40
33
- name : Generate documentation
41
- run : pnpm run doc
34
+ run : pnpm doc
42
35
43
36
- name : Publish Docs
44
37
run : |
Original file line number Diff line number Diff line change @@ -63,6 +63,47 @@ tap.test('Index.from', assert => {
63
63
assert . end ( )
64
64
} )
65
65
66
+ tap . test ( 'Index.from an object' , assert => {
67
+ const obj = {
68
+ a : 'Alpha' ,
69
+ b : 'Beta' ,
70
+ g : 'Gamma' ,
71
+ d : 'Delta' ,
72
+ }
73
+ const index = Index . from ( obj , 2 , '•' )
74
+
75
+ assert . same (
76
+ index . all ( ) ,
77
+ {
78
+ 'al' : { 'a' : [ 0 ] } ,
79
+ 'lp' : { 'a' : [ 1 ] } ,
80
+ 'ph' : { 'a' : [ 2 ] } ,
81
+ 'ha' : { 'a' : [ 3 ] } ,
82
+ 'a•' : {
83
+ 'a' : [ 4 ] ,
84
+ 'b' : [ 3 ] ,
85
+ 'g' : [ 4 ] ,
86
+ 'd' : [ 4 ] ,
87
+ } ,
88
+ 'be' : { 'b' : [ 0 ] } ,
89
+ 'et' : { 'b' : [ 1 ] } ,
90
+ 'ta' : {
91
+ 'b' : [ 2 ] ,
92
+ 'd' : [ 3 ] ,
93
+ } ,
94
+ 'ga' : { 'g' : [ 0 ] } ,
95
+ 'am' : { 'g' : [ 1 ] } ,
96
+ 'mm' : { 'g' : [ 2 ] } ,
97
+ 'ma' : { 'g' : [ 3 ] } ,
98
+ 'de' : { 'd' : [ 0 ] } ,
99
+ 'el' : { 'd' : [ 1 ] } ,
100
+ 'lt' : { 'd' : [ 2 ] } ,
101
+ } ,
102
+ )
103
+ assert . same ( index . search ( 'ta' ) , [ 'b' , 'd' ] )
104
+ assert . end ( )
105
+ } )
106
+
66
107
tap . test ( 'index' , assert => {
67
108
const index = new Index ( 3 , '•' )
68
109
index . add ( 'Alpha' , 'a' )
You can’t perform that action at this time.
0 commit comments