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
2
2
3
3
on :
4
4
push :
5
- branches : ["main"]
5
+ branches :
6
+ - " main"
6
7
7
8
workflow_dispatch :
8
9
19
20
20
21
steps :
21
22
- name : Setup Repository (${{github.event.repository.name}})
22
- uses : actions/checkout@v3
23
+ uses : actions/checkout@v4
23
24
24
25
- name : Setup Deno (${{env.deno-version}})
25
26
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
2
2
3
3
on :
4
4
push :
5
- branches : ["main"]
5
+ branches :
6
+ - " main"
6
7
7
8
workflow_dispatch :
8
9
19
20
20
21
steps :
21
22
- name : Setup Repository (${{github.event.repository.name}})
22
- uses : actions/checkout@v3
23
+ uses : actions/checkout@v4
23
24
24
25
- name : Setup Deno (${{env.deno-version}})
25
26
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 1
1
{
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
+ }
13
17
}
You can’t perform that action at this time.
0 commit comments