File tree 3 files changed +9
-6
lines changed
3 files changed +9
-6
lines changed Original file line number Diff line number Diff line change 17
17
- uses : actions/checkout@v4
18
18
- uses : oven-sh/setup-bun@v1
19
19
with :
20
- registry-url : ' https://registry.npmjs.org'
20
+ registry-url : " https://registry.npmjs.org"
21
21
- run : bun install
22
22
- run : bun check:apply
23
23
- run : bun type-check
Original file line number Diff line number Diff line change 27
27
28
28
- name : Build
29
29
uses : oven-sh/setup-bun@v1
30
- with :
31
- registry-url : ' https://registry.npmjs.org'
32
30
- run : bun install
33
31
- run : bun check:apply
34
32
- run : bun type-check
@@ -37,13 +35,17 @@ jobs:
37
35
- run : bun run build
38
36
39
37
- name : Publish
40
- run : npm publish --access public
38
+ uses : actions/setup-node@v4
39
+ with :
40
+ node-version : 20
41
+ registry-url : " https://registry.npmjs.org"
42
+ - run : npm publish --access public
41
43
env :
42
44
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
43
45
44
46
# - uses: actions/setup-node@v4
45
47
# with:
46
- # registry-url: ' https://npm.pkg.github.com'
48
+ # registry-url: " https://npm.pkg.github.com"
47
49
# - run: npm publish
48
50
# env:
49
51
# NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 14
14
" !build.ts" ,
15
15
" !**/*.config.ts" ,
16
16
" !**/*.test.ts" ,
17
- " !**/__test__"
17
+ " !**/__test__" ,
18
+ " !**/examples"
18
19
],
19
20
"type" : " module" ,
20
21
"module" : " index.ts" ,
You can’t perform that action at this time.
0 commit comments