Commit 31e0f94 1 parent 2c4be4b commit 31e0f94 Copy full SHA for 31e0f94
File tree 1 file changed +6
-1
lines changed
1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 29
29
uses : actions/setup-node@v4
30
30
with :
31
31
node-version : ${{ matrix.node-version }}
32
+
33
+ # Note: if this step is failing due to authentication errors, it is likely because you regenerated the npm-shrinkwrap.json
34
+ # file while your local NPM was set to use the coxauto artifactory NPM registry. To fix this, locally delete your node_modules
35
+ # folder and npm-shrinkwrap.json file, then run `npm i --registry=https://registry.npmjs.org/` to reinstall using public NPM
36
+ # and then `npm shrinkwrap` to regenerate the npm-shrinkwrap.json file.
32
37
- name : Install dependencies
33
- run : npm ci --verbose
38
+ run : npm ci
34
39
- run : npm run build --if-present
35
40
- name : Run tests
36
41
run : npm test -- --no-watch
You can’t perform that action at this time.
0 commit comments