File tree Expand file tree Collapse file tree 6 files changed +43
-17
lines changed Expand file tree Collapse file tree 6 files changed +43
-17
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ name: Run Linter
22
33on :
44  push :
5-     branches : ["main"] 
5+     branches :
6+       - " main" 
67
78  workflow_dispatch :
89
1920
2021    steps :
2122      - name : Setup Repository (${{github.event.repository.name}}) 
22-         uses : actions/checkout@v3  
23+         uses : actions/checkout@v4  
2324
2425      - name : Setup Deno (${{env.deno-version}}) 
2526        uses : denoland/setup-deno@v1 
Original file line number Diff line number Diff line change 1+ name : Publish 
2+ 
3+ on :
4+   push :
5+     branches :
6+       - main 
7+ 
8+ jobs :
9+   publish :
10+     runs-on : ubuntu-latest 
11+ 
12+     permissions :
13+       contents : read 
14+       id-token : write 
15+ 
16+     steps :
17+       - uses : actions/checkout@v4 
18+ 
19+       - name : Publish package 
20+         run : npx jsr publish 
Original file line number Diff line number Diff line change @@ -2,7 +2,8 @@ name: Run Unit Tests
22
33on :
44  push :
5-     branches : ["main"] 
5+     branches :
6+       - " main" 
67
78  workflow_dispatch :
89
1920
2021    steps :
2122      - name : Setup Repository (${{github.event.repository.name}}) 
22-         uses : actions/checkout@v3  
23+         uses : actions/checkout@v4  
2324
2425      - name : Setup Deno (${{env.deno-version}}) 
2526        uses : denoland/setup-deno@v1 
Original file line number Diff line number Diff line change 1- # Template  
2- Template for TypeScript .
1+ # Binary Reader  
2+ A binary reader package to read binary data .
Original file line number Diff line number Diff line change 11{
2-     "tasks" : {
3-         "index" : " deno run --check -A ./src/index.ts" 
4-     },
5-     "exclude" : [
6-         " **/*.test.ts" 
7-     ],
8-     "test" : {
9-         "include" : [
10-             " **/*.test.ts" 
11-         ]
12-     }
2+   "name" : " @typescriptplayground/binary-reader" 
3+   "version" : " 0.1.0" 
4+   "license" : " ./LICENSE" 
5+   "exports" : " ./src/index.ts" 
6+   "tasks" : {
7+     "index" : " deno run --check -A ./src/index.ts" 
8+   },
9+   "exclude" : [
10+     " **/*.test.ts" 
11+   ],
12+   "test" : {
13+     "include" : [
14+       " **/*.test.ts" 
15+     ]
16+   }
1317}
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments