@tiboli/types 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -96,13 +96,28 @@ jobs:
|
|
|
96
96
|
steps:
|
|
97
97
|
- name: Checkout code
|
|
98
98
|
uses: actions/checkout@v4
|
|
99
|
-
|
|
99
|
+
|
|
100
|
+
- name: Setup Node.js for scoped package
|
|
100
101
|
uses: actions/setup-node@v4
|
|
101
102
|
with:
|
|
102
103
|
node-version-file: .nvmrc
|
|
103
104
|
registry-url: 'https://registry.npmjs.org/'
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
-
|
|
105
|
+
scope: '@tiboli'
|
|
106
|
+
|
|
107
|
+
- name: Verify npm configuration
|
|
108
|
+
run: |
|
|
109
|
+
echo "Registry:"
|
|
110
|
+
npm config get registry
|
|
111
|
+
echo "npmrc content:"
|
|
112
|
+
cat ~/.npmrc || true
|
|
113
|
+
|
|
114
|
+
- name: Install dependencies
|
|
115
|
+
run: npm ci
|
|
116
|
+
|
|
117
|
+
- name: Build package
|
|
118
|
+
run: npm run build
|
|
119
|
+
|
|
120
|
+
- name: Publish to npm
|
|
121
|
+
run: npm publish --access public
|
|
107
122
|
env:
|
|
108
123
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|