File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323 - uses : actions/checkout@v6
2424 - uses : actions/setup-node@v6
2525 with :
26- node-version : 22
26+ node-version-file : ' .nvmrc '
2727 cache : npm
2828 - run : npm ci
2929 - run : npm run build
4343 - uses : actions/checkout@v6
4444 - uses : actions/setup-node@v6
4545 with :
46- node-version : 22
46+ node-version-file : ' .nvmrc '
4747 - uses : actions/cache/restore@v4
4848 with :
4949 path : |
6161 - uses : actions/checkout@v6
6262 - uses : actions/setup-node@v6
6363 with :
64- node-version : 22
64+ node-version-file : ' .nvmrc '
6565 - uses : actions/cache/restore@v4
6666 with :
6767 path : |
8383 - uses : actions/checkout@v6
8484 - uses : actions/setup-node@v6
8585 with :
86- node-version : 22
86+ node-version-file : ' .nvmrc '
8787 - uses : actions/cache/restore@v4
8888 with :
8989 path : |
@@ -109,7 +109,7 @@ jobs:
109109 - uses : actions/checkout@v6
110110 - uses : actions/setup-node@v6
111111 with :
112- node-version : 22
112+ node-version-file : ' .nvmrc '
113113 - uses : actions/cache/restore@v4
114114 with :
115115 path : |
Original file line number Diff line number Diff line change 1616 runs-on : ubuntu-latest
1717 steps :
1818 - uses : actions/checkout@v6
19- - uses : actions/setup-node@v4
19+ - uses : actions/setup-node@v6
2020 with :
21- node-version : 22
21+ node-version-file : ' .nvmrc '
2222 cache : npm
2323 - run : npm ci
2424 - run : npm run docs:build
Original file line number Diff line number Diff line change 2121 - uses : actions/checkout@v6
2222 - uses : actions/setup-node@v6
2323 with :
24- node-version : 22
24+ node-version-file : ' .nvmrc '
2525 cache : npm
26- - name : Update npm
27- run : npm update -g npm
2826 - run : npm ci
2927 - run : npm run build
3028 - name : Create release PR or publish
@@ -39,12 +37,14 @@ jobs:
3937 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
4038 NPM_TOKEN : ' '
4139 NPM_CONFIG_PROVENANCE : true
42- - name : Report CI status on changeset PR
40+ - name : Configure changeset PR
4341 if : steps.changesets.outputs.pullRequestNumber
4442 env :
4543 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
4644 run : |
47- sha=$(gh pr view ${{ steps.changesets.outputs.pullRequestNumber }} --json headRefOid -q .headRefOid)
45+ PR=${{ steps.changesets.outputs.pullRequestNumber }}
46+ gh pr edit "$PR" --add-label "skip changeset"
47+ sha=$(gh pr view "$PR" --json headRefOid -q .headRefOid)
4848 gh api repos/${{ github.repository }}/statuses/$sha \
4949 -f state=success \
5050 -f context=CI \
Original file line number Diff line number Diff line change 1- 22
1+ 24
Original file line number Diff line number Diff line change 22 "name" : " storybook-addon-performance-panel-repo" ,
33 "private" : true ,
44 "type" : " module" ,
5+ "engines" : {
6+ "node" : " >=24"
7+ },
58 "workspaces" : [
69 " packages/*"
710 ],
You can’t perform that action at this time.
0 commit comments