File tree Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Expand file tree Collapse file tree 3 files changed +27
-2
lines changed Original file line number Diff line number Diff line change 19
19
- uses : actions/checkout@v4
20
20
- uses : actions/setup-node@v4
21
21
with :
22
- node-version : 22
22
+ node-version : 24
23
23
cache : yarn
24
24
- run : yarn --frozen-lockfile
25
25
- run : yarn docs:build
Original file line number Diff line number Diff line change
1
+ name : Publish
2
+
3
+ on :
4
+ workflow_dispatch : {}
5
+ release :
6
+ types : [published]
7
+
8
+ jobs :
9
+ publish :
10
+ runs-on : ubuntu-latest
11
+ permissions :
12
+ contents : read
13
+ packages : write
14
+ steps :
15
+ - uses : actions/checkout@v4
16
+ - uses : actions/setup-node@v4
17
+ with :
18
+ node-version : 24
19
+ cache : yarn
20
+ - run : yarn --frozen-lockfile
21
+ - run : yarn test
22
+ - run : yarn lint
23
+ - run : npm publish
24
+ env :
25
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
Original file line number Diff line number Diff line change 13
13
- uses : actions/checkout@v4
14
14
- uses : actions/setup-node@v4
15
15
with :
16
- node-version : 22
16
+ node-version : 24
17
17
cache : yarn
18
18
- run : yarn --frozen-lockfile
19
19
- run : yarn test
You can’t perform that action at this time.
0 commit comments