File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : npm publish
2+ on :
3+ release :
4+ types : [published]
5+
6+ permissions :
7+ contents : read
8+ id-token : write
9+
10+ jobs :
11+ publish :
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - uses : actions/checkout@v6
16+ with :
17+ persist-credentials : false
18+
19+ - uses : actions/setup-node@v6
20+ with :
21+ node-version : " 24"
22+
23+ - uses : pnpm/action-setup@v4
24+ with :
25+ version : 10
26+
27+ - run : pnpm install --frozen-lockfile
28+ - run : pnpm run build
29+ - run : pnpm publish
Original file line number Diff line number Diff line change 1+ name : test
2+ on : [push]
3+
4+ permissions :
5+ contents : read
6+
7+ jobs :
8+ build :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - uses : actions/checkout@v6
12+ with :
13+ persist-credentials : false
14+
15+ - uses : actions/setup-node@v6
16+ with :
17+ node-version : " 24"
18+
19+ - uses : pnpm/action-setup@v4
20+ with :
21+ version : 10
22+
23+ - run : pnpm install --frozen-lockfile
24+ - run : pnpm run build
You can’t perform that action at this time.
0 commit comments