We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02bfec4 commit b4964b3Copy full SHA for b4964b3
.github/workflows/publish.yml
@@ -15,14 +15,23 @@ jobs:
15
uses: actions/setup-node@v4
16
with:
17
node-version: '18.x'
18
- cache: 'npm'
19
scope: '@foo-software'
+ - name: Full Clean (no npm cache)
20
+ run: |
21
+ rm -rf node_modules
22
+ rm -rf packages/*/node_modules
23
+ rm -rf package-lock.json
24
- name: Use stable npm version
25
run: npm install -g [email protected]
26
- name: Install
27
run: |
28
npm ci
29
npm run lerna -- bootstrap --hoist
30
+ - name: Show installed type versions
31
32
+ npm ls @types/node || true
33
+ npm ls @jest/types || true
34
+
35
- name: Publish Packages
36
37
echo '//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}' > ${{ github.workspace }}/.npmrc
0 commit comments