Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Correct .npmrc for newer versions of NPM #787

Open
wants to merge 12 commits into
base: npm-8.19
Choose a base branch
from
Prev Previous commit
Next Next commit
fix repo init
  • Loading branch information
RobiNino committed May 22, 2024
commit 8764f66bd14b07309a43e30f40d50d76a0fdb4a7
2 changes: 1 addition & 1 deletion .github/workflows/integrationTests.yml
Original file line number Diff line number Diff line change
@@ -289,7 +289,7 @@ jobs:
- name: Install npm
uses: actions/setup-node@v3
with:
node-version: matrix.node
node-version: ${{ matrix.node }}

- name: Config list
run: npm config ls -l
Original file line number Diff line number Diff line change
@@ -49,7 +49,13 @@ public class NpmBuildInfoExtractorTest extends IntegrationTestsBase {
private static final Set<String> DEV_SCOPE = Stream.of("dev").collect(Collectors.toSet());
private static final Set<String> PROD_SCOPE = Stream.of("prod").collect(Collectors.toSet());
private static final Set<String> DEV_PROD_SCOPE = Stream.of("prod", "dev").collect(Collectors.toSet());


public NpmBuildInfoExtractorTest() {
localRepo1 = getKeyWithTimestamp(NPM_LOCAL_REPO);
remoteRepo = "";
virtualRepo = "";
}

@AfterMethod
protected void cleanup() throws IOException {
FileUtils.deleteDirectory(tempWorkspace);
Loading
Oops, something went wrong.