We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 375387b commit 1b662c2Copy full SHA for 1b662c2
1 file changed
.github/workflows/cd-matrix.yml
@@ -76,16 +76,18 @@ jobs:
76
}
77
78
- name: Create .npmrc file
79
- run: touch .npmrc
+ run: |
80
+ if [ -f ".npmrc" ]; then
81
+ rm .npmrc
82
+ fi
83
+ touch .npmrc
84
+
85
86
- name: Configure npm registry
87
run: |
88
echo "@infragistics:registry=https://packages.infragistics.com/npm/js-licensed/" >> .npmrc
89
echo "//packages.infragistics.com/npm/js-licensed/:_authToken=${{ secrets.INFRAGISTICS_NPM_TOKEN }}" >> .npmrc
90
- - name: Verify .npmrc content
- run: cat .npmrc
-
91
- name: Install dependencies
92
run: npm install
93
env:
0 commit comments