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 1919 - uses : actions/checkout@v4
2020 - uses : actions/setup-node@v4
2121 with :
22- node-version : 22
22+ node-version : 24
2323 cache : yarn
2424 - run : yarn --frozen-lockfile
2525 - 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 1313 - uses : actions/checkout@v4
1414 - uses : actions/setup-node@v4
1515 with :
16- node-version : 22
16+ node-version : 24
1717 cache : yarn
1818 - run : yarn --frozen-lockfile
1919 - run : yarn test
You can’t perform that action at this time.
0 commit comments