File tree 3 files changed +19
-2
lines changed
3 files changed +19
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Publish Package to npmjs
2
+ on :
3
+ release :
4
+ types : [published]
5
+ jobs :
6
+ build :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v4
10
+ # Setup .npmrc file to publish to npm
11
+ - uses : actions/setup-node@v3
12
+ with :
13
+ node-version : ' 20.x'
14
+ registry-url : ' https://registry.npmjs.org'
15
+ - run : npm ci
16
+ - run : npm publish
17
+ env :
18
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 6
6
npm install multithreading
7
7
```
8
8
9
- Usage with Bun is currently not supported due to this issue: https://github.com/oven-sh/bun/issues/2875
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " multithreading" ,
3
- "version" : " 0.1.2 " ,
3
+ "version" : " 0.1.3 " ,
4
4
"description" : " Multithreading that feels like normal JavaScript" ,
5
5
"author" :
" Walter van der Giessen <[email protected] >" ,
6
6
"homepage" : " https://github.com/W4G1/multithreading/tree/main#readme" ,
You can’t perform that action at this time.
0 commit comments