File tree Expand file tree Collapse file tree 3 files changed +15
-2
lines changed
Expand file tree Collapse file tree 3 files changed +15
-2
lines changed Original file line number Diff line number Diff line change 88jobs :
99 verify :
1010 runs-on : ubuntu-latest
11+ environment : npm
1112 strategy :
1213 matrix :
13- node-version : [20.x, 22.14.x]
14+ # node-version: [20.x, 22.14.x]
15+ node-version : [22.14.x]
1416
1517 steps :
1618 - uses : actions/checkout@v4
1719 - name : Use Node.js ${{ matrix.node-version }}
1820 uses : actions/setup-node@v4
1921 with :
2022 node-version : ${{ matrix.node-version }}
23+ always-auth : true
24+ registry-url : https://registry.npmjs.org/
25+ env :
26+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
27+ - run : npm whoami
28+ env :
29+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
2130 - name : Enable Corepack (Yarn 4)
2231 run : corepack enable
2332 - run : yarn install --immutable
2433 - run : yarn tsc
2534 - run : yarn build
26- - run : yarn test:ci
35+ # - run: yarn test:ci
2736 - if : ${{ matrix.node-version == '22.14.x' }}
2837 run : yarn release --dry-run
38+ env :
39+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 11registry = https://registry.npmjs.org/
22engine-strict = true
3+ always-auth = true
Original file line number Diff line number Diff line change 66 "packageManager" : " yarn@4.10.3" ,
77 "publishConfig" : {
88 "access" : " public" ,
9+ "registry" : " https://registry.npmjs.org/" ,
910 "main" : " dist/index.esm.js" ,
1011 "types" : " dist/index.d.ts"
1112 },
You can’t perform that action at this time.
0 commit comments